diff options
Diffstat (limited to 'Software/Visual_Studio/Utilities/Tango.Protobuf.CLI/Program.cs')
| -rw-r--r-- | Software/Visual_Studio/Utilities/Tango.Protobuf.CLI/Program.cs | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Software/Visual_Studio/Utilities/Tango.Protobuf.CLI/Program.cs b/Software/Visual_Studio/Utilities/Tango.Protobuf.CLI/Program.cs index 51e3993d6..91f0e0ef7 100644 --- a/Software/Visual_Studio/Utilities/Tango.Protobuf.CLI/Program.cs +++ b/Software/Visual_Studio/Utilities/Tango.Protobuf.CLI/Program.cs @@ -82,9 +82,13 @@ namespace Tango.Protobuf.CLI { return ExitError(ex.ToString()); } - } - return ExitSuccess("Protobuf folder compiled to " + Path.GetFullPath(options.OutputFolder)); + return ExitSuccess("Protobuf folder compiled to " + Path.GetFullPath(options.OutputFolder)); + } + else + { + throw new ArgumentException("Error parsing input arguments."); + } } catch (Exception ex) { |
