mirror of
https://github.com/game-ci/unity-builder.git
synced 2025-07-07 20:35:33 -04:00
Wrap quotes
This commit is contained in:
parent
6ea914d22a
commit
ecd5452fb6
28
dist/platforms/windows/build.ps1
vendored
28
dist/platforms/windows/build.ps1
vendored
@ -137,20 +137,20 @@ $unityArgs = @(
|
|||||||
"-batchmode",
|
"-batchmode",
|
||||||
"-nographics",
|
"-nographics",
|
||||||
"-silent-crashes",
|
"-silent-crashes",
|
||||||
"-customBuildName", "$Env:BUILD_NAME",
|
"-customBuildName", "`"$Env:BUILD_NAME`"",
|
||||||
"-projectPath", "$Env:UNITY_PROJECT_PATH",
|
"-projectPath", "`"$Env:UNITY_PROJECT_PATH`"",
|
||||||
"-executeMethod", "$Env:BUILD_METHOD",
|
"-executeMethod", "`"$Env:BUILD_METHOD`"",
|
||||||
"-buildTarget", "$Env:BUILD_TARGET",
|
"-buildTarget", "`"$Env:BUILD_TARGET`"",
|
||||||
"-customBuildTarget", "$Env:BUILD_TARGET",
|
"-customBuildTarget", "`"$Env:BUILD_TARGET`"",
|
||||||
"-customBuildPath", "$Env:CUSTOM_BUILD_PATH",
|
"-customBuildPath", "`"$Env:CUSTOM_BUILD_PATH`"",
|
||||||
"-buildVersion", "$Env:VERSION",
|
"-buildVersion", "`"$Env:VERSION`"",
|
||||||
"-androidVersionCode", "$Env:ANDROID_VERSION_CODE",
|
"-androidVersionCode", "`"$Env:ANDROID_VERSION_CODE`"",
|
||||||
"-androidKeystorePass", "$Env:ANDROID_KEYSTORE_PASS",
|
"-androidKeystorePass", "`"$Env:ANDROID_KEYSTORE_PASS`"",
|
||||||
"-androidKeyaliasName", "$Env:ANDROID_KEYALIAS_NAME",
|
"-androidKeyaliasName", "`"$Env:ANDROID_KEYALIAS_NAME`"",
|
||||||
"-androidKeyaliasPass", "$Env:ANDROID_KEYALIAS_PASS",
|
"-androidKeyaliasPass", "`"$Env:ANDROID_KEYALIAS_PASS`"",
|
||||||
"-androidTargetSdkVersion", "$Env:ANDROID_TARGET_SDK_VERSION",
|
"-androidTargetSdkVersion", "`"$Env:ANDROID_TARGET_SDK_VERSION`"",
|
||||||
"-androidExportType", "$Env:ANDROID_EXPORT_TYPE",
|
"-androidExportType", "`"$Env:ANDROID_EXPORT_TYPE`"",
|
||||||
"-androidSymbolType", "$Env:ANDROID_SYMBOL_TYPE",
|
"-androidSymbolType", "`"$Env:ANDROID_SYMBOL_TYPE`"",
|
||||||
"-logfile", "-"
|
"-logfile", "-"
|
||||||
) + $customParametersArray
|
) + $customParametersArray
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user