Fix bpbb on git callout

This commit is contained in:
Alex Hudson 2011-06-29 22:40:34 +01:00
parent 0a221cce70
commit c385fe21ea

View file

@ -306,7 +306,7 @@ namespace SparkleLib {
// Reading the standard output HAS to go before
// WaitForExit, or it will hang forever on output > 4096 bytes
string output = git_status.StandardOutput.ReadToEnd ().TrimEnd ();
git.WaitForExit ();
git_status.WaitForExit ();
string [] lines = output.Split ("\n".ToCharArray ());