Skip to content

Commit

Permalink
Testing different loop condition
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewKahr committed Nov 15, 2023
1 parent e3eae5b commit 9af2bcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dist/platforms/windows/build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9af2bcb

Please sign in to comment.