aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Git
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Tango.Git')
-rw-r--r--Software/Visual_Studio/Tango.Git/GitRepositoryManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Software/Visual_Studio/Tango.Git/GitRepositoryManager.cs b/Software/Visual_Studio/Tango.Git/GitRepositoryManager.cs
index 7895035b9..906db8bd4 100644
--- a/Software/Visual_Studio/Tango.Git/GitRepositoryManager.cs
+++ b/Software/Visual_Studio/Tango.Git/GitRepositoryManager.cs
@@ -157,7 +157,7 @@ namespace Tango.Git
var result = command.Run().Result;
if (result.ExitCode != 0)
{
- throw new IOException(result.StandardError);
+ throw new IOException(result.StandardOutput);
}
}