Don't set CONFIGURATION environment variable (as this by default flows to tests)

This commit is contained in:
Daniel Plaisted 2018-11-08 12:51:27 -08:00
parent 220a34ea0f
commit a6ee8199a9

View file

@ -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")