diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2020-12-06 15:29:55 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2020-12-06 15:29:55 +0200 |
| commit | 8660c8ec3836079e63e5db6379b327fab6181e0c (patch) | |
| tree | 688e7cf59a2133dac2e4e46fad95a7c4ffb9e272 /Software/Visual_Studio | |
| parent | 14278e941d589494ef45681169b7e7f2a984900b (diff) | |
| download | Tango-8660c8ec3836079e63e5db6379b327fab6181e0c.tar.gz Tango-8660c8ec3836079e63e5db6379b327fab6181e0c.zip | |
FSE_v1.1.2
Diffstat (limited to 'Software/Visual_Studio')
| -rw-r--r-- | Software/Visual_Studio/Tango.Git/GitRepositoryManager.cs | 2 |
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); } } |
