Commit d4496518 d44965187428a464ec1ae2b6cb67b7aeeb1cdd12 by Nicolas Perriault

Merge pull request #765 from hexid/dotNET-wait-for-exit

Update dotNET executable to wait for the Casper process to exit
2 parents 16d6e2b7 a67b35d0
No preview for this file type
......@@ -167,6 +167,7 @@ class casperjs {
string line = p.StandardOutput.ReadLine();
Console.WriteLine(line);
}
p.WaitForExit();
return p.ExitCode;
} catch(Win32Exception e) {
Console.WriteLine("Fatal: " + e.Message + "; did you install " + ENGINE + "?");
......