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 outputValue = output.Value();
|
||||
|
||||
return BuildPackage(path, configValue, outputValue, intermediateOutput.Value()) ? 1 : 0;
|
||||
return BuildPackage(path, configValue, outputValue, intermediateOutput.Value()) ? 0 : 1;
|
||||
});
|
||||
|
||||
try
|
||||
|
|
Loading…
Reference in a new issue