summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorDuncan Mac-Vicar P <dmacvicar@gmail.com>2016-06-29 10:05:19 +0200
committerGitHub <noreply@github.com>2016-06-29 10:05:19 +0200
commit9291d71720ef14a09d260caf59693b1cfa328488 (patch)
tree592de2e265f172b4e111e01e9a387ad00209bf52 /README.md
parent9e671f0fbaa6382fb9fd7b7cbdf789a2ba94d80a (diff)
parent04ed71403c4b854f9463a41fbd7b1f273c584690 (diff)
downloadterraform-provider-libvirt-9291d71720ef14a09d260caf59693b1cfa328488.tar
terraform-provider-libvirt-9291d71720ef14a09d260caf59693b1cfa328488.tar.gz
Merge pull request #35 from moio/stick-to-v0.6-api
Build against released terraform 0.6.16 instead of master
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 7 insertions, 1 deletions
diff --git a/README.md b/README.md
index 16ca801a..72160bdd 100644
--- a/README.md
+++ b/README.md
@@ -67,7 +67,13 @@ $ terraform destroy
2. [Set up Gopath](https://golang.org/doc/code.html)
3. `git clone` this repository into `$GOPATH/src/github.com/dmacvicar/terraform-provider-libvirt`
4. Run `go get` to get dependencies
-5. Run `go install` to build the binary. You will now find the
+5. Switch the terraform project back to the stable version, otherwise you will get a `Incompatible API version with plugin. Plugin version: 1, Ours: 2` error at runtime:
+```
+cd $GOPATH/src/github.com/hashicorp/terraform
+git checkout v0.6.16
+cd $GOPATH/src/github.com/dmacvicar/terraform-provider-libvirt
+```
+6. Run `go install` to build the binary. You will now find the
binary at `$GOPATH/bin/terraform-provider-libvirt`.
## Running