Merge pull request #49 from carlosdp/add-updatedeps-readme

Add a note about installing dependencies to README
This commit is contained in:
Mitchell Hashimoto 2014-07-28 12:52:46 -07:00
commit e378eaca87
1 changed files with 6 additions and 3 deletions

View File

@ -59,10 +59,13 @@ as a compilation tool on top of Go:
$ go get -u github.com/mitchellh/gox
Next, clone this repository into `$GOPATH/src/github.com/hashicorp/terraform`
and then just type `make`. This will compile some dependencies and then
run the tests. If this exits with exit status 0, then everything is working!
Next, clone this repository into `$GOPATH/src/github.com/hashicorp/terraform`.
Install the necessary dependencies by running `make updatedeps` and then just
type `make`. This will compile some more dependencies and thenrun the tests. If
this exits with exit status 0, then everything is working!
$ make updatedeps
...
$ make
...