mirror of
https://github.com/hashicorp/packer.git
synced 2026-06-09 08:42:33 -04:00
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:
commit
560b15de00
1 changed files with 2 additions and 2 deletions
|
|
@ -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="386 amd64 arm arm64 ppc64le"
|
||||
ALL_XC_OS="linux darwin windows freebsd openbsd solaris"
|
||||
ALL_XC_ARCH=${ALL_XC_ARCH:-"386 amd64 arm arm64 ppc64le"}
|
||||
ALL_XC_OS=${ALL_XC_OS:-"linux darwin windows freebsd openbsd solaris"}
|
||||
|
||||
# Exit immediately if a command fails
|
||||
set -e
|
||||
|
|
|
|||
Loading…
Reference in a new issue