mirror of
https://github.com/securego/gosec.git
synced 2024-12-24 11:35:52 +00:00
Fix up some mistakes in the README instructions (#195)
This fixes a couple issues found in the README in the development section: * There was no information provided on dependencies. Both go/dep and golint are required to run make. * To run the tests, the command 'make test' not 'make tests' has to be used.
This commit is contained in:
parent
e809226800
commit
542d0c0e4f
1 changed files with 6 additions and 2 deletions
|
@ -116,8 +116,12 @@ $ gas -fmt=json -out=results.json *.go
|
|||
```
|
||||
### Development
|
||||
|
||||
#### Build
|
||||
#### Prerequisites
|
||||
|
||||
Install dep according to the instructions here: https://github.com/golang/dep
|
||||
Install the latest version of golint: https://github.com/golang/lint
|
||||
|
||||
#### Build
|
||||
|
||||
```
|
||||
make
|
||||
|
@ -126,7 +130,7 @@ make
|
|||
#### Tests
|
||||
|
||||
```
|
||||
make tests
|
||||
make test
|
||||
```
|
||||
|
||||
#### Release Build
|
||||
|
|
Loading…
Reference in a new issue