From 59f70467f3fbbd705ea6246ccd355f40df93b595 Mon Sep 17 00:00:00 2001 From: Geert Gerritsen Date: Mon, 15 Feb 2016 12:15:16 +0100 Subject: [PATCH] Update Readme for local dev. * Make sure to clone first and bootstrap second --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 67d7d8442..9ab6888d3 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,8 @@ needed dependencies. **Developing locally** For local dev first make sure Go is properly installed, including setting up a -[GOPATH](https://golang.org/doc/code.html#GOPATH). After setting up Go, you can +[GOPATH](https://golang.org/doc/code.html#GOPATH). After setting up Go, clone this +repository into `$GOPATH/src/github.com/hashicorp/nomad`. Then you can download the required build tools such as vet, cover, godep etc by bootstrapping your environment. @@ -87,8 +88,7 @@ $ make bootstrap ... ``` -Next, clone this repository into `$GOPATH/src/github.com/hashicorp/nomad`. -Then type `make test`. This will run the tests. If this exits with exit status 0, +Afterwards type `make test`. This will run the tests. If this exits with exit status 0, then everything is working! ```sh