Skip to content

Commit

Permalink
Fix #8359. Process exit detection does not work reliably for .NET apps.
Browse files Browse the repository at this point in the history
Former-commit-id: 899ff5c4ce4f36b9a0b00e1708b064ae7ef149af
  • Loading branch information
ylangisc committed Nov 27, 2014
1 parent 8137bd7 commit 5d4ca07
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions source/ch/cyberduck/core/local/WindowsApplicationLauncher.cs
Expand Up @@ -50,11 +50,6 @@ public bool open(ch.cyberduck.core.Local local, Application application, Applica
process.StartInfo.FileName = GetExecutableCommand(application.getIdentifier());
process.StartInfo.Arguments = "\"" + local.getAbsolute() + "\"";
}
if (callback != null)
{
process.EnableRaisingEvents = true;
process.Exited += delegate { callback.callback(); };
}
return Utils.StartProcess(process);
}

Expand Down

0 comments on commit 5d4ca07

Please sign in to comment.