diff options
author | Rob Mensching <rob@firegiant.com> | 2022-08-14 14:08:40 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2022-08-15 06:49:36 -0700 |
commit | 91b8fb6f3215e9e652ac036f756dec383267adad (patch) | |
tree | 7c2273c4e50b23f965f7ecb32b4185aa4bf9561c /src/tools | |
parent | a6f8b6fa3903d846cdc2fbe715ca951d83af3107 (diff) | |
download | wix-91b8fb6f3215e9e652ac036f756dec383267adad.tar.gz wix-91b8fb6f3215e9e652ac036f756dec383267adad.tar.bz2 wix-91b8fb6f3215e9e652ac036f756dec383267adad.zip |
Improve command line error reporting and remove some unused errors
Fixes 6468
Diffstat (limited to 'src/tools')
-rw-r--r-- | src/tools/heat/HeatCommand.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/heat/HeatCommand.cs b/src/tools/heat/HeatCommand.cs index 6815acd6..d0c86401 100644 --- a/src/tools/heat/HeatCommand.cs +++ b/src/tools/heat/HeatCommand.cs | |||
@@ -75,7 +75,7 @@ namespace WixToolset.Harvesters | |||
75 | } | 75 | } |
76 | else if ("o" == parameter || "out" == parameter) | 76 | else if ("o" == parameter || "out" == parameter) |
77 | { | 77 | { |
78 | this.OutputFile = parser.GetNextArgumentAsFilePathOrError(arg); | 78 | this.OutputFile = parser.GetNextArgumentAsFilePathOrError(arg, "output source file"); |
79 | 79 | ||
80 | if (String.IsNullOrEmpty(this.OutputFile)) | 80 | if (String.IsNullOrEmpty(this.OutputFile)) |
81 | { | 81 | { |