mirror of
https://github.com/game-ci/unity-builder.git
synced 2025-07-04 12:25:19 -04:00
8 lines
635 B
PowerShell
8 lines
635 B
PowerShell
# Activates Unity
|
|
& "C:\Program Files\Unity\Hub\Editor\$Env:UNITY_VERSION\Editor\Unity.exe" -batchmode -quit -nographics `
|
|
-username $Env:UNITY_EMAIL `
|
|
-password $Env:UNITY_PASSWORD `
|
|
-serial $Env:UNITY_SERIAL `
|
|
-projectPath "c:/BlankProject" `
|
|
-logfile | Out-Host
|