From c1a7c5f70be60d6e4e9ee34e625446fbc3534124 Mon Sep 17 00:00:00 2001 From: Webber Date: Tue, 11 Feb 2020 20:37:26 +0100 Subject: [PATCH] Separate custom parameters --- action/steps/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action/steps/build.sh b/action/steps/build.sh index 28d681ef..8a2fd6ef 100644 --- a/action/steps/build.sh +++ b/action/steps/build.sh @@ -65,7 +65,7 @@ fi # # Display custom parameters # -echo "Using custom parameters \"$CUSTOM_PARAMETERS\"." +echo "Using custom parameters $CUSTOM_PARAMETERS." # The build specification below may require Unity 2019.2.11f1 or later (not tested below). # Reference: https://docs.unity3d.com/2019.3/Documentation/Manual/CommandLineArguments.html @@ -109,7 +109,7 @@ xvfb-run --auto-servernum --server-args='-screen 0 640x480x24' \ -customBuildTarget "$BUILD_TARGET" \ -customBuildPath "$CUSTOM_BUILD_PATH" \ -executeMethod "$BUILD_METHOD" \ - "$CUSTOM_PARAMETERS" + $CUSTOM_PARAMETERS # Catch exit code BUILD_EXIT_CODE=$?