mirror of
https://github.com/securego/gosec.git
synced 2025-03-01 04:33:29 +00:00
Fix golint link (#263)
This commit is contained in:
parent
3116b07de4
commit
443f84fd4d
2 changed files with 6 additions and 2 deletions
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue