Automator: update common-files@master in istio/istio.io@master (#7071)

This commit is contained in:
Istio Automation 2020-04-13 16:58:29 -07:00 committed by GitHub
parent eedfe4fc5c
commit 3f5db84e23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -1 +1 @@
21a22c9fca1b694fb5589e31d51959c3dac98fb0
57b92ed4fd8ac3b4f7ead9037e46d53cbd45b593

View File

@ -26,7 +26,7 @@ set -e
LOCAL_ARCH=$(uname -m)
export LOCAL_ARCH
# Pass environment set target architecture to build system
if [[ -z ${TARGET_ARCH} ]]; then
if [[ ${TARGET_ARCH} ]]; then
export TARGET_ARCH
elif [[ ${LOCAL_ARCH} == x86_64 ]]; then
export TARGET_ARCH=amd64
@ -44,7 +44,7 @@ fi
LOCAL_OS=$(uname)
export LOCAL_OS
# Pass environment set target operating-system to build system
if [[ -z ${TARGET_OS} ]]; then
if [[ ${TARGET_OS} ]]; then
export TARGET_OS
elif [[ $LOCAL_OS == Linux ]]; then
export TARGET_OS=linux