From d4b416dbadf9ceca387c9927a5be3616b7ddfe4f Mon Sep 17 00:00:00 2001 From: Maxim Lipnin Date: Thu, 23 Dec 2021 16:10:15 +0300 Subject: [PATCH] Fix setting the configuration parameter in the apple test runner --- eng/testing/AppleRunnerTemplate.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/testing/AppleRunnerTemplate.sh b/eng/testing/AppleRunnerTemplate.sh index 8f66672f739e66..e3f82159daf792 100644 --- a/eng/testing/AppleRunnerTemplate.sh +++ b/eng/testing/AppleRunnerTemplate.sh @@ -17,7 +17,7 @@ if [ -n "$6" ]; then ADDITIONAL_ARGS=${@:6} fi -if [[ "$CONFIGURATION" != "Debug" ]]; then $CONFIGURATION="Release"; fi +if [[ "$CONFIGURATION" != "Debug" ]]; then CONFIGURATION="Release"; fi if [[ "$TARGET_OS" == "maccatalyst" ]]; then TARGET=maccatalyst; fi