Separate custom parameters

This commit is contained in:
Webber 2020-02-11 20:37:26 +01:00 committed by Webber Takken
parent 7e4851cc3a
commit c1a7c5f70b

View File

@ -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=$?