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
This commit is contained in:
Adam Ochonicki 2016-02-23 16:17:15 -05:00
parent b831ba3ab6
commit 0673fe3273
1 changed files with 1 additions and 4 deletions

View File

@ -36,13 +36,10 @@ For local dev first make sure Go is properly installed, including setting up a [
- [Git](http://git-scm.com/) - [Git](http://git-scm.com/)
- [Mercurial](http://mercurial.selenic.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 ```sh
$ make updatedeps
...
$ make $ 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: 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: