mirror of
https://github.com/dolphin-emu/dolphin-test.git
synced 2026-01-31 01:15:17 +01:00
scmrev2
This commit is contained in:
@@ -64,7 +64,12 @@ function AttemptToExecuteCommand(cmd)
|
||||
{
|
||||
try
|
||||
{
|
||||
return wshShell.Exec(cmd).ExitCode;
|
||||
var exec = wshShell.Exec(cmd)
|
||||
|
||||
// wait until the command has finished
|
||||
while (exec.Status == 0) {}
|
||||
|
||||
return exec.ExitCode;
|
||||
}
|
||||
catch (e)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user