aboutsummaryrefslogtreecommitdiffstats
path: root/Software
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2020-12-06 15:29:55 +0200
committerRoy Ben-Shabat <Roy@Twine-s.com>2020-12-06 15:29:55 +0200
commit8660c8ec3836079e63e5db6379b327fab6181e0c (patch)
tree688e7cf59a2133dac2e4e46fad95a7c4ffb9e272 /Software
parent14278e941d589494ef45681169b7e7f2a984900b (diff)
downloadTango-8660c8ec3836079e63e5db6379b327fab6181e0c.tar.gz
Tango-8660c8ec3836079e63e5db6379b327fab6181e0c.zip
FSE_v1.1.2
Diffstat (limited to 'Software')
-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);
}
}