dotnet pack returns the wrong exit code
This commit is contained in:
parent
7d5a901532
commit
7843f3ea91
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ namespace Microsoft.DotNet.Tools.Compiler
|
||||||
var configValue = configuration.Value() ?? Cli.Utils.Constants.DefaultConfiguration;
|
var configValue = configuration.Value() ?? Cli.Utils.Constants.DefaultConfiguration;
|
||||||
var outputValue = output.Value();
|
var outputValue = output.Value();
|
||||||
|
|
||||||
return BuildPackage(path, configValue, outputValue, intermediateOutput.Value()) ? 1 : 0;
|
return BuildPackage(path, configValue, outputValue, intermediateOutput.Value()) ? 0 : 1;
|
||||||
});
|
});
|
||||||
|
|
||||||
try
|
try
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue