From 542d0c0e4fb652d0b5b0a1241c44733d07b78e71 Mon Sep 17 00:00:00 2001 From: Eric Brown Date: Mon, 19 Mar 2018 16:21:32 -0700 Subject: [PATCH] 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. --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3c2bd483c2..6d5bf4cf71 100644 --- a/README.md +++ b/README.md @@ -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