mirror of
https://github.com/game-ci/unity-builder.git
synced 2025-07-04 12:25:19 -04:00

* Update workflows, bump image version for docker * Fix Unity pathing and cleanup scripts * Fix Unity pathing * Fix activation scripts
15 lines
578 B
PowerShell
15 lines
578 B
PowerShell
# Activates Unity
|
|
|
|
Write-Output ""
|
|
Write-Output "###########################"
|
|
Write-Output "# Activating #"
|
|
Write-Output "###########################"
|
|
Write-Output ""
|
|
|
|
& "$Env:UNITY_PATH/Editor/Unity.exe" -batchmode -quit -nographics `
|
|
-username $Env:UNITY_EMAIL `
|
|
-password $Env:UNITY_PASSWORD `
|
|
-serial $Env:UNITY_SERIAL `
|
|
-projectPath "c:/BlankProject" `
|
|
-logfile - | Out-Host
|