Correct git paths in the README.md file

This commit is contained in:
Manuel Vogel 2017-10-23 21:11:15 +02:00 committed by Martin Atkins
parent 6fe964a91a
commit d40a6ee037

View file

@ -16,17 +16,17 @@ Requirements
Building The Provider Building The Provider
--------------------- ---------------------
Clone repository to: `$GOPATH/src/github.com/hashicorp/terraform-provider-$PROVIDER_NAME` Clone repository to: `$GOPATH/src/github.com/terraform-providers/terraform-provider-$PROVIDER_NAME`
```sh ```sh
$ mkdir -p $GOPATH/src/github.com/hashicorp; cd $GOPATH/src/github.com/hashicorp $ mkdir -p $GOPATH/src/github.com/terraform-providers; cd $GOPATH/src/github.com/terraform-providers
$ git clone git@github.com:hashicorp/terraform-provider-$PROVIDER_NAME $ git clone git@github.com:terraform-providers/terraform-provider-$PROVIDER_NAME
``` ```
Enter the provider directory and build the provider Enter the provider directory and build the provider
```sh ```sh
$ cd $GOPATH/src/github.com/hashicorp/terraform-provider-$PROVIDER_NAME $ cd $GOPATH/src/github.com/terraform-providers/terraform-provider-$PROVIDER_NAME
$ make build $ make build
``` ```