Testing different loop condition

This commit is contained in:
Andrew Kahr 2023-11-14 16:58:47 -08:00
parent e3eae5b07e
commit 9af2bcb3a6

View File

@ -161,7 +161,7 @@ $process = Start-Process -FilePath "$Env:UNITY_PATH\Editor\Unity.exe" `
-PassThru `
-NoNewWindow
while (!$process.HasExited) {
while ($true) {
if ($process.HasExited) {
Start-Sleep -Seconds 5
Get-Process