diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2020-12-06 15:40:20 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2020-12-06 15:40:20 +0200 |
| commit | d2241fc7414565af5c39df88b4d8c6af292db45c (patch) | |
| tree | 53b23f18fa5c8bd3ecf5db48fe3f1fd1e36a6b10 /Software/Visual_Studio/Tango.Core | |
| parent | 8660c8ec3836079e63e5db6379b327fab6181e0c (diff) | |
| download | Tango-d2241fc7414565af5c39df88b4d8c6af292db45c.tar.gz Tango-d2241fc7414565af5c39df88b4d8c6af292db45c.zip | |
FSE_v1.1.2
Diffstat (limited to 'Software/Visual_Studio/Tango.Core')
| -rw-r--r-- | Software/Visual_Studio/Tango.Core/Components/CmdCommand.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Software/Visual_Studio/Tango.Core/Components/CmdCommand.cs b/Software/Visual_Studio/Tango.Core/Components/CmdCommand.cs index bbd954fd4..afd763966 100644 --- a/Software/Visual_Studio/Tango.Core/Components/CmdCommand.cs +++ b/Software/Visual_Studio/Tango.Core/Components/CmdCommand.cs @@ -96,7 +96,7 @@ namespace Tango.Core.Components if (_process.ExitCode != 0) { - throw new IOException($"The process {_process.StartInfo.FileName} has exited with the code {_process.ExitCode}."); + throw new IOException($"The process {_process.StartInfo.FileName} has exited with the code {_process.ExitCode}.\n{error}"); } return new CmdCommandResult() |
