From a6ee8199a96971d58527434520dbd520f1093655 Mon Sep 17 00:00:00 2001 From: Daniel Plaisted Date: Thu, 8 Nov 2018 12:51:27 -0800 Subject: [PATCH] Don't set CONFIGURATION environment variable (as this by default flows to tests) --- run-build.sh | 6 ------ 1 file changed, 6 deletions(-) diff --git a/run-build.sh b/run-build.sh index bc5e22bdd..9807c4a30 100755 --- a/run-build.sh +++ b/run-build.sh @@ -30,12 +30,6 @@ args=( ) while [[ $# > 0 ]]; do lowerI="$(echo $1 | awk '{print tolower($0)}')" case $lowerI in - -c|--configuration) - export CONFIGURATION=$2 - args+=("--configuration") - args+=("$2") - shift - ;; -a|--architecture) ARCHITECTURE="$2" args+=("/p:Architecture=$ARCHITECTURE")