Skip to content

Commit 424549d

Browse files
paubygep13
authored andcommitted
(chocolatey#3177) Remove LocalOnly from help text
1 parent d25f993 commit 424549d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/chocolatey/infrastructure.app/commands/ChocolateyListCommand.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ public virtual void ConfigureArgumentParser(OptionSet optionSet, ChocolateyConfi
9595
"Prerelease - Include Prereleases? Defaults to false.",
9696
option => configuration.Prerelease = option != null)
9797
.Add("i|includeprograms|include-programs",
98-
"IncludePrograms - Used in conjunction with LocalOnly, filters out apps chocolatey has listed as packages and includes those in the list. Defaults to false.",
98+
"IncludePrograms - Filters out apps Chocolatey has listed as packages and includes those in the list. Defaults to false.",
9999
option => configuration.ListCommand.IncludeRegistryPrograms = option != null)
100100
.Add("version=",
101101
"Version - Specific version of a package to return.",

src/chocolatey/infrastructure.app/commands/ChocolateySearchCommand.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public virtual void ConfigureArgumentParser(OptionSet optionSet, ChocolateyConfi
5151
"Prerelease - Include Prereleases? Defaults to false.",
5252
option => configuration.Prerelease = option != null)
5353
.Add("i|includeprograms|include-programs", // Should this parameter be deprecated on Search?
54-
"IncludePrograms - Used in conjunction with LocalOnly, filters out apps chocolatey has listed as packages and includes those in the list. Defaults to false.",
54+
"IncludePrograms - Filters out apps Chocolatey has listed as packages and includes those in the list. Defaults to false.",
5555
option => configuration.ListCommand.IncludeRegistryPrograms = option != null)
5656
.Add("a|all|allversions|all-versions",
5757
"AllVersions - include results from all versions.",

0 commit comments

Comments
 (0)