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:
Eric Brown 2018-03-19 16:21:32 -07:00 committed by Grant Murphy
parent e809226800
commit 542d0c0e4f

View file

@ -116,8 +116,12 @@ $ gas -fmt=json -out=results.json *.go
``` ```
### Development ### 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 make
@ -126,7 +130,7 @@ make
#### Tests #### Tests
``` ```
make tests make test
``` ```
#### Release Build #### Release Build