From 0673fe3273c2682742ed74f6d5d8585d548b747e Mon Sep 17 00:00:00 2001 From: Adam Ochonicki Date: Tue, 23 Feb 2016 16:17:15 -0500 Subject: [PATCH] Remove `make updatedeps` from README steps As of 0.6.11 `make updatedeps` has been replaced with vendored packages https://github.com/hashicorp/terraform/issues/4960#issuecomment-178932434 --- README.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/README.md b/README.md index 20172b89c..d24221435 100644 --- a/README.md +++ b/README.md @@ -36,13 +36,10 @@ For local dev first make sure Go is properly installed, including setting up a [ - [Git](http://git-scm.com/) - [Mercurial](http://mercurial.selenic.com/) -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 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` and run `make`. This will compile dependencies and run the tests. If this exits with exit status 0, then everything is working! ```sh -$ make updatedeps -... $ make -... ``` To compile a development version of Terraform and the built-in plugins, run `make dev`. This will put Terraform binaries in the `bin` and `$GOPATH/bin` folders: