Merge pull request #4937 from hashicorp/b-build-sh-no-deps

build.sh: don't dive into vendored deps when building
This commit is contained in:
Paul Hinze 2016-02-01 11:34:15 -06:00
commit 55235a8db2
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ gox \
-arch="${XC_ARCH}" \
-ldflags "-X main.GitCommit ${GIT_COMMIT}${GIT_DIRTY}" \
-output "pkg/{{.OS}}_{{.Arch}}/terraform-{{.Dir}}" \
./...
$(go list ./... | grep -v /vendor/)
# Make sure "terraform-terraform" is renamed properly
for PLATFORM in $(find ./pkg -mindepth 1 -maxdepth 1 -type d); do