Skip to content

Commit

Permalink
(#147) Improve help description for command option
Browse files Browse the repository at this point in the history
The help description for the IncludePrograms option on the list command
was confusing, as it didn't make clear what actually happens when you
use the --includeprograms option.

This commit attempts to address this by calling out that the output
changes when using this option to include the additional pieces of
software which appear in add/remove programs, which aren't already
managed by Chocolatey CLI.
  • Loading branch information
hi2u authored and gep13 committed Apr 19, 2024
1 parent 032bafb commit 244631e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public virtual void ConfigureArgumentParser(OptionSet optionSet, ChocolateyConfi
"Prerelease - Include Prereleases? Defaults to false.",
option => configuration.Prerelease = option != null)
.Add("i|includeprograms|include-programs",
"IncludePrograms - Filters out apps Chocolatey has listed as packages and includes those in the list. Defaults to false.",
"IncludePrograms - Includes software from Programs and Features not being managed by Chocolatey CLI.",
option => configuration.ListCommand.IncludeRegistryPrograms = option != null)
.Add("version=",
"Version - Specific version of a package to return.",
Expand Down

0 comments on commit 244631e

Please sign in to comment.