Remove core-dev from README

$ make core-dev
make: *** No rule to make target `core-dev'.  Stop.

This was removed in #15258
This commit is contained in:
Alex Rowley 2017-06-22 12:39:10 +01:00 committed by Martin Atkins
parent de2927d0b4
commit 2f4e9a6797
1 changed files with 0 additions and 6 deletions

View File

@ -62,12 +62,6 @@ If you're working on a specific provider and only wish to rebuild that provider,
$ make plugin-dev PLUGIN=provider-azure
```
If you're working on the core of Terraform, and only wish to rebuild that without rebuilding providers, you can use the `core-dev` target. It is important to note that some types of changes may require both core and providers to be rebuilt - for example work on the RPC interface. To build just the core of Terraform:
```sh
$ make core-dev
```
### Dependencies
Terraform stores its dependencies under `vendor/`, which [Go 1.6+ will automatically recognize and load](https://golang.org/cmd/go/#hdr-Vendor_Directories). We use [`govendor`](https://github.com/kardianos/govendor) to manage the vendored dependencies.