Merge pull request #7326 from hashicorp/allow_to_set_build_settings

scripts/build.sh: allow to set build settings when building
This commit is contained in:
Adrien Delorme 2019-02-19 15:11:51 +01:00 committed by GitHub
commit 560b15de00
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. # This script builds the application from source for multiple platforms.
# Determine the arch/os combos we're building for # Determine the arch/os combos we're building for
ALL_XC_ARCH="386 amd64 arm arm64 ppc64le" ALL_XC_ARCH=${ALL_XC_ARCH:-"386 amd64 arm arm64 ppc64le"}
ALL_XC_OS="linux darwin windows freebsd openbsd solaris" ALL_XC_OS=${ALL_XC_OS:-"linux darwin windows freebsd openbsd solaris"}
# Exit immediately if a command fails # Exit immediately if a command fails
set -e set -e