From c440b70fa287417910be57fdfafdedca67978113 Mon Sep 17 00:00:00 2001 From: Brandon Dahler Date: Fri, 21 Sep 2012 19:27:26 -0500 Subject: [PATCH] Fix bug from too large of commit log (introduced 1c8cffd178264bce3fae52453b2e270b8150d077). --- SparkleLib/Git/SparkleRepoGit.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/SparkleLib/Git/SparkleRepoGit.cs b/SparkleLib/Git/SparkleRepoGit.cs index fc772471..3ecaa989 100644 --- a/SparkleLib/Git/SparkleRepoGit.cs +++ b/SparkleLib/Git/SparkleRepoGit.cs @@ -886,6 +886,7 @@ namespace SparkleLib.Git { } } + git_status.StandardOutput.ReadToEnd(); git_status.WaitForExit (); return message; }