rm -rf $GOPATHgo get -u github.com/mitchellh/goxgit clone https://github.com/hashicorp/terraform.git $GOPATH/src/github.com/hashicorp/terraformcd $GOPATH/src/github.com/hashicorp/terraformgit checkout -b v0.2.2-branch v0.2.2make updatedepsmakemake devgit clone https://github.com/svend/terraform-provider-dummy.git $GOPATH/src/github.com/svend/terraform-provider-dummycd $GOPATH/src/github.com/svend/terraform-provider-dummygo build -o terraform-provider-dummyterraform planFull output is here: https://gist.github.com/svend/7db925c89a4876e5ff06Here is the build environment and package versions.echo $GOPATH/Users/ssorensen/gocodewhich terraform/Users/ssorensen/gocode/bin/terraformterraform --versionTerraform v0.2.2cd $GOPATH/src/github.com/hashicorp/terraform; git describe --tagsv0.2.2grep 'const APIVersion' $GOPATH/src/github.com/hashicorp/terraform/plugin/server.goconst APIVersion = "1"
cd $GOPATH/src/github.com/hashicorp/terraformgit checkout -b v0.2.2-branch v0.2.2