More debug

This commit is contained in:
Andrew Kahr 2023-10-21 22:04:04 -07:00
parent 092e54df5a
commit 988d7e1802

View File

@ -135,24 +135,24 @@ $_, $customParametersArray = Invoke-Expression('Write-Output -- "" ' + $Env:CUST
$argList = @("-quit", $argList = @("-quit",
"-batchmode", "-batchmode",
"-nographics", "-nographics"
"-projectPath", $Env:UNITY_PROJECT_PATH,
"-executeMethod", $Env:BUILD_METHOD,
"-buildTarget", $Env:BUILD_TARGET,
"-customBuildTarget", $Env:BUILD_TARGET,
"-customBuildPath", $Env:CUSTOM_BUILD_PATH,
"-buildVersion", $Env:VERSION,
"-androidVersionCode", $Env:ANDROID_VERSION_CODE,
"-androidKeystorePass", $Env:ANDROID_KEYSTORE_PASS,
"-androidKeyaliasName", $Env:ANDROID_KEYALIAS_NAME,
"-androidKeyaliasPass", $Env:ANDROID_KEYALIAS_PASS,
"-androidTargetSdkVersion", $Env:ANDROID_TARGET_SDK_VERSION,
"-androidExportType", $Env:ANDROID_EXPORT_TYPE,
"-androidSymbolType", $Env:ANDROID_SYMBOL_TYPE,
"-logfile", "-", "./build.log",
"-silent-crashes"
) # + $customParametersArray ) # + $customParametersArray
# ,
# "-projectPath", $Env:UNITY_PROJECT_PATH,
# "-executeMethod", $Env:BUILD_METHOD,
# "-buildTarget", $Env:BUILD_TARGET,
# "-customBuildTarget", $Env:BUILD_TARGET,
# "-customBuildPath", $Env:CUSTOM_BUILD_PATH,
# "-buildVersion", $Env:VERSION,
# "-androidVersionCode", $Env:ANDROID_VERSION_CODE,
# "-androidKeystorePass", $Env:ANDROID_KEYSTORE_PASS,
# "-androidKeyaliasName", $Env:ANDROID_KEYALIAS_NAME,
# "-androidKeyaliasPass", $Env:ANDROID_KEYALIAS_PASS,
# "-androidTargetSdkVersion", $Env:ANDROID_TARGET_SDK_VERSION,
# "-androidExportType", $Env:ANDROID_EXPORT_TYPE,
# "-androidSymbolType", $Env:ANDROID_SYMBOL_TYPE,
# "-logfile", "-", "./build.log",
# "-silent-crashes"
foreach ($element in $argList) { foreach ($element in $argList) {
Write-Host $element Write-Host $element
} }