scripts: ignore errors on gox for now

This commit is contained in:
Mitchell Hashimoto 2014-09-11 11:51:44 -07:00
parent fd54017233
commit ddeefdcedd
1 changed files with 2 additions and 0 deletions

View File

@ -37,12 +37,14 @@ mkdir -p bin/
# Build!
echo "==> Building..."
set +e
gox \
-os="${XC_OS}" \
-arch="${XC_ARCH}" \
-ldflags "-X main.GitCommit ${GIT_COMMIT}${GIT_DIRTY}" \
-output "pkg/{{.OS}}_{{.Arch}}/packer-{{.Dir}}" \
./...
set -e
# Make sure "packer-packer" is renamed properly
for PLATFORM in $(find ./pkg -mindepth 1 -maxdepth 1 -type d); do