Add debug statement. TODO: Remove these

pull/305/head
Andrew Kahr 2022-01-24 00:40:22 -08:00
parent 9b1ea18e4a
commit 451c322d5b
3 changed files with 113 additions and 111 deletions

1
dist/index.js vendored
View File

@ -447,6 +447,7 @@ class Docker {
} }
yield this.setupWindowsRun(platform); yield this.setupWindowsRun(platform);
this.validateWindowsPlatformRequirements(platform); this.validateWindowsPlatformRequirements(platform);
console.log("Len: " + process.env.UNITY_EMAIL.length);
const windowsRunCommand = `docker run \ const windowsRunCommand = `docker run \
--workdir c:/github/workspace \ --workdir c:/github/workspace \
--rm \ --rm \

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -1,4 +1,5 @@
# Activates Unity # Activates Unity
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_USER `
-password $Env:UNITY_PASS ` -password $Env:UNITY_PASS `