diff options
Diffstat (limited to 'Software/Visual_Studio/Tango.Core/Components')
| -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 afd763966..bbd954fd4 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}.\n{error}"); + throw new IOException($"The process {_process.StartInfo.FileName} has exited with the code {_process.ExitCode}."); } return new CmdCommandResult() |
