Remove debug and fix environment variables for activation/deactivation scripts
parent
47e600b419
commit
2baaed1013
|
|
@ -452,7 +452,7 @@ class Docker {
|
||||||
--rm \
|
--rm \
|
||||||
--env UNITY_LICENSE \
|
--env UNITY_LICENSE \
|
||||||
--env UNITY_LICENSE_FILE \
|
--env UNITY_LICENSE_FILE \
|
||||||
--env UNITY_EMAIL="${process.env.UNITY_EMAIL}" \
|
--env UNITY_EMAIL \
|
||||||
--env UNITY_PASSWORD \
|
--env UNITY_PASSWORD \
|
||||||
--env UNITY_SERIAL="${unitySerial}" \
|
--env UNITY_SERIAL="${unitySerial}" \
|
||||||
--env UNITY_VERSION="${version}" \
|
--env UNITY_VERSION="${version}" \
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -1,8 +1,6 @@
|
||||||
# Activates Unity
|
# Activates Unity
|
||||||
Write-Output "DEBUG: "
|
|
||||||
Write-Output $Env:UNITY_USER
|
|
||||||
& "C:\Program Files\Unity\Hub\Editor\$Env:UNITY_VERSION\Editor\Unity.exe" -batchmode -quit -nographics `
|
& "C:\Program Files\Unity\Hub\Editor\$Env:UNITY_VERSION\Editor\Unity.exe" -batchmode -quit -nographics `
|
||||||
-username $Env:UNITY_USER `
|
-username $Env:UNITY_EMAIL `
|
||||||
-password $Env:UNITY_PASS `
|
-password $Env:UNITY_PASSWORD `
|
||||||
-serial $Env:UNITY_SERIAL `
|
-serial $Env:UNITY_SERIAL `
|
||||||
-logfile | Out-Host
|
-logfile | Out-Host
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# Return the active Unity license
|
# Return the active Unity license
|
||||||
& "C:\Program Files\Unity\Hub\Editor\$Env:UNITY_VERSION\Editor\Unity.exe" -batchmode -quit -nographics `
|
& "C:\Program Files\Unity\Hub\Editor\$Env:UNITY_VERSION\Editor\Unity.exe" -batchmode -quit -nographics `
|
||||||
-username $Env:UNITY_USER `
|
-username $Env:UNITY_EMAIL `
|
||||||
-password $Env:UNITY_PASS `
|
-password $Env:UNITY_PASSWORD `
|
||||||
-returnlicense `
|
-returnlicense `
|
||||||
-logfile | Out-Host
|
-logfile | Out-Host
|
||||||
|
|
|
||||||
|
|
@ -131,7 +131,7 @@ class Docker {
|
||||||
--rm \
|
--rm \
|
||||||
--env UNITY_LICENSE \
|
--env UNITY_LICENSE \
|
||||||
--env UNITY_LICENSE_FILE \
|
--env UNITY_LICENSE_FILE \
|
||||||
--env UNITY_EMAIL="${process.env.UNITY_EMAIL}" \
|
--env UNITY_EMAIL \
|
||||||
--env UNITY_PASSWORD \
|
--env UNITY_PASSWORD \
|
||||||
--env UNITY_SERIAL="${unitySerial}" \
|
--env UNITY_SERIAL="${unitySerial}" \
|
||||||
--env UNITY_VERSION="${version}" \
|
--env UNITY_VERSION="${version}" \
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue