From e9b4db003e79375d325a514f9d396bb04dfdf0fc Mon Sep 17 00:00:00 2001 From: Webber Date: Tue, 11 Feb 2020 20:33:00 +0100 Subject: [PATCH] Separate custom parameters --- action/steps/run_tests.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action/steps/run_tests.sh b/action/steps/run_tests.sh index 484bcfc..73f1670 100644 --- a/action/steps/run_tests.sh +++ b/action/steps/run_tests.sh @@ -17,7 +17,7 @@ FULL_ARTIFACTS_PATH=$GITHUB_WORKSPACE/$ARTIFACTS_PATH # # Display custom parameters # -echo "Using custom parameters \"$CUSTOM_PARAMETERS\"." +echo "Using custom parameters $CUSTOM_PARAMETERS." # Set the modes for testing case $TEST_MODE in @@ -82,7 +82,7 @@ if [ $EDIT_MODE = true ]; then -runTests \ -testPlatform editmode \ -testResults "$FULL_ARTIFACTS_PATH/editmode-results.xml" \ - "$CUSTOM_PARAMETERS" + $CUSTOM_PARAMETERS # Catch exit code EDIT_MODE_EXIT_CODE=$?