diff options
Diffstat (limited to 'src/WixToolset.Core/CommandLine/BuildCommand.cs')
-rw-r--r-- | src/WixToolset.Core/CommandLine/BuildCommand.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Core/CommandLine/BuildCommand.cs b/src/WixToolset.Core/CommandLine/BuildCommand.cs index 072accc3..fed95958 100644 --- a/src/WixToolset.Core/CommandLine/BuildCommand.cs +++ b/src/WixToolset.Core/CommandLine/BuildCommand.cs | |||
@@ -578,7 +578,7 @@ namespace WixToolset.Core.CommandLine | |||
578 | case "bindpath": | 578 | case "bindpath": |
579 | { | 579 | { |
580 | var value = parser.GetNextArgumentOrError(arg); | 580 | var value = parser.GetNextArgumentOrError(arg); |
581 | if (this.TryParseBindPath(value, out var bindPath)) | 581 | if (value != null && this.TryParseBindPath(value, out var bindPath)) |
582 | { | 582 | { |
583 | this.BindPaths.Add(bindPath); | 583 | this.BindPaths.Add(bindPath); |
584 | return true; | 584 | return true; |