Skip to content

Commit

Permalink
Fix up some mistakes in the README instructions (securego#195)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
ericwb authored and gcmurphy committed Mar 19, 2018
1 parent e809226 commit 542d0c0
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -126,7 +130,7 @@ make
#### Tests

```
make tests
make test
```

#### Release Build
Expand Down

0 comments on commit 542d0c0

Please sign in to comment.