Skip to content

Commit 874cefa

Browse files
committed
Powershell: Use WaitForExit instead of -Wait
1 parent 6a20f7d commit 874cefa

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

x.ps1

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ foreach ($python in "py", "python3", "python", "python2") {
2323
# Use python3, not python2
2424
$xpy_args = @("-3") + $xpy_args
2525
}
26-
$process = Start-Process -NoNewWindow -Wait -PassThru $python $xpy_args
26+
$process = Start-Process -NoNewWindow -PassThru $python $xpy_args
27+
$process.WaitForExit()
2728
Exit $process.ExitCode
2829
}
2930
}

0 commit comments

Comments
 (0)