From 2333fb5f9c7306fd5ec5c40d5ebf3cc5fbb99514 Mon Sep 17 00:00:00 2001 From: Carlos Diaz-Padron Date: Mon, 28 Jul 2014 12:51:06 -0700 Subject: [PATCH] Add a note about installing dependencies to README --- README.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7278f4d73..5ea4bdfbf 100644 --- a/README.md +++ b/README.md @@ -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 ...