Skip to content

Commit

Permalink
(chocolatey#1759) apikey exit 2 if nothing to do
Browse files Browse the repository at this point in the history
If enhanced exit codes are enabled, this sets the apikey command to
exit with 2 if there is nothing to do (i.e. if NOCHANGEMESSAGE is
output).
  • Loading branch information
TheCakeIsNaOH committed Mar 21, 2022
1 parent 483a551 commit 4c31a50
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -134,12 +134,17 @@ Exit codes that normally result from running this command.
Normal:
- 0: operation was successful, no issues detected
- -1 or 1: an error has occurred
- 2: nothing to do, apikey already set (enhanced)
NOTE: Starting in v0.10.12, if you have the feature '{0}'
turned on, then choco will provide enhanced exit codes that allow
better integration and scripting.
If you find other exit codes that we have not yet documented, please
file a ticket so we can document it at
https://github.com/chocolatey/choco/issues/new/choose.
");
".format_with(ApplicationParameters.Features.UseEnhancedExitCodes));
"chocolatey".Log().Info(ChocolateyLoggers.Important, "Options and Switches");
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,15 @@ public void set_api_key(ChocolateyConfiguration configuration)
_xmlService.serialize(configFileSettings, ApplicationParameters.GlobalConfigFileLocation);
this.Log().Info(() => "Updated ApiKey for {0}".format_with(configuration.Sources));
}
else this.Log().Warn(NO_CHANGE_MESSAGE);
else
{
this.Log().Warn(NO_CHANGE_MESSAGE);

if (configuration.Features.UseEnhancedExitCodes && Environment.ExitCode == 0)
{
Environment.ExitCode = 2;
}
}
}
}

Expand Down

0 comments on commit 4c31a50

Please sign in to comment.