diff options
author | kt <kt@katbyte.me> | 2018-05-02 11:03:00 -0700 |
---|---|---|
committer | kt <kt@katbyte.me> | 2018-05-02 11:03:00 -0700 |
commit | 6fe72cf79fd995909fbaf2e3576bf75a0165c258 (patch) | |
tree | ecdd92a287ae57dbe423c178a76fc2b2f79a6b8a | |
parent | e8d9a4b11f4e593fd22f9c92bfeab99bb81b2503 (diff) | |
download | terraform-provider-statuscake-6fe72cf79fd995909fbaf2e3576bf75a0165c258.tar.gz terraform-provider-statuscake-6fe72cf79fd995909fbaf2e3576bf75a0165c258.tar.zst terraform-provider-statuscake-6fe72cf79fd995909fbaf2e3576bf75a0165c258.zip |
README.md: correct provider organization & missing repository name
-rw-r--r-- | README.md | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -16,17 +16,17 @@ Requirements | |||
16 | Building The Provider | 16 | Building The Provider |
17 | --------------------- | 17 | --------------------- |
18 | 18 | ||
19 | Clone repository to: `$GOPATH/src/github.com/hashicorp/terraform-provider-$PROVIDER_NAME` | 19 | Clone repository to: `$GOPATH/src/github.com/terraform-providers/terraform-provider-statuscake` |
20 | 20 | ||
21 | ```sh | 21 | ```sh |
22 | $ mkdir -p $GOPATH/src/github.com/hashicorp; cd $GOPATH/src/github.com/hashicorp | 22 | $ mkdir -p $GOPATH/src/github.com/terraform-providers; cd $GOPATH/src/github.com/terraform-providers |
23 | $ git clone git@github.com:hashicorp/terraform-provider-$PROVIDER_NAME | 23 | $ git clone git@github.com:terraform-providers/terraform-provider-statuscake |
24 | ``` | 24 | ``` |
25 | 25 | ||
26 | Enter the provider directory and build the provider | 26 | Enter the provider directory and build the provider |
27 | 27 | ||
28 | ```sh | 28 | ```sh |
29 | $ cd $GOPATH/src/github.com/hashicorp/terraform-provider-$PROVIDER_NAME | 29 | $ cd $GOPATH/src/github.com/terraform-providers/terraform-provider-statuscake |
30 | $ make build | 30 | $ make build |
31 | ``` | 31 | ``` |
32 | 32 | ||
@@ -44,7 +44,7 @@ To compile the provider, run `make build`. This will build the provider and put | |||
44 | ```sh | 44 | ```sh |
45 | $ make bin | 45 | $ make bin |
46 | ... | 46 | ... |
47 | $ $GOPATH/bin/terraform-provider-$PROVIDER_NAME | 47 | $ $GOPATH/bin/terraform-provider-statuscake |
48 | ... | 48 | ... |
49 | ``` | 49 | ``` |
50 | 50 | ||