Merge pull request #7504 from hashicorp/revert_7326

Revert "scripts/build.sh: allow to set build settings when building"
This commit is contained in:
Megan Marsh 2019-04-15 11:10:37 -07:00 committed by GitHub
commit 98e0b67ef0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -2,8 +2,8 @@
# This script builds the application from source for multiple platforms.
# Determine the arch/os combos we're building for
ALL_XC_ARCH=${ALL_XC_ARCH:-"386 amd64 arm arm64 ppc64le"}
ALL_XC_OS=${ALL_XC_OS:-"linux darwin windows freebsd openbsd solaris"}
ALL_XC_ARCH="386 amd64 arm arm64 ppc64le"
ALL_XC_OS="linux darwin windows freebsd openbsd solaris"
# Exit immediately if a command fails
set -e