Fix golint link (#263)

This commit is contained in:
Yuki Ito 2018-11-05 17:13:26 +09:00 committed by Cosmin Cojocar
parent 3116b07de4
commit 443f84fd4d
2 changed files with 6 additions and 2 deletions

View file

@ -8,7 +8,7 @@ go:
install: install:
- go get -u github.com/golang/dep/cmd/dep - go get -u github.com/golang/dep/cmd/dep
- go get -u github.com/golang/lint/golint - go get -u golang.org/x/lint/golint
- go get -u github.com/onsi/ginkgo/ginkgo - go get -u github.com/onsi/ginkgo/ginkgo
- go get -u github.com/onsi/gomega - go get -u github.com/onsi/gomega
- go get -u golang.org/x/crypto/ssh - go get -u golang.org/x/crypto/ssh

View file

@ -149,7 +149,11 @@ $ gosec -fmt=json -out=results.json *.go
### Prerequisites ### Prerequisites
Install dep according to the instructions here: https://github.com/golang/dep Install dep according to the instructions here: https://github.com/golang/dep
Install the latest version of golint: https://github.com/golang/lint Install the latest version of golint:
```bash
go get -u golang.org/x/lint/golint
```
### Build ### Build