Skip to content

Commit

Permalink
Merge pull request #1886 from mprasanth/help-command-enhancements
Browse files Browse the repository at this point in the history
(#1861) This improves the terminology in choco.exe help output
  • Loading branch information
gep13 authored Apr 18, 2021
2 parents e6c42ba + 43c99ec commit 2e31696
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ namespace chocolatey.infrastructure.app.commands
using logging;
using services;

[CommandFor("install", "installs packages from various sources")]
[CommandFor("install", "installs packages using configured sources")]
public class ChocolateyInstallCommand : ICommand
{
private readonly IChocolateyPackageService _packageService;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ namespace chocolatey.infrastructure.app.commands
using services;
using templates;

[CommandFor("new", "generates files necessary for a chocolatey package from a template")]
[CommandFor("new", "creates template files for creating a new Chocolatey package")]
public class ChocolateyNewCommand : ICommand
{
private readonly ITemplateService _templateService;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ namespace chocolatey.infrastructure.app.commands
using logging;
using services;

[CommandFor("outdated", "retrieves packages that are outdated. Similar to upgrade all --noop")]
[CommandFor("outdated", "retrieves information about packages that are outdated. Similar to upgrade all --noop")]
public class ChocolateyOutdatedCommand : ICommand
{
private readonly IChocolateyPackageService _packageService;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ namespace chocolatey.infrastructure.app.commands
using logging;
using services;

[CommandFor("pack", "packages up a nuspec to a compiled nupkg")]
[CommandFor("pack", "packages nuspec, scripts, and other Chocolatey package resources into a nupkg file")]
public class ChocolateyPackCommand : ICommand
{
private readonly IChocolateyPackageService _packageService;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ namespace chocolatey.infrastructure.app.commands
using logging;
using services;

[CommandFor("push", "pushes a compiled nupkg")]
[CommandFor("push", "pushes a compiled nupkg to a source")]
public class ChocolateyPushCommand : ICommand
{
private readonly IChocolateyPackageService _packageService;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ namespace chocolatey.infrastructure.app.commands
using resources;
#endif

[CommandFor("unpackself", "have chocolatey set itself up")]
[CommandFor("unpackself", "re-installs Chocolatey base files")]
public class ChocolateyUnpackSelfCommand : ICommand
{
private readonly IFileSystem _fileSystem;
Expand Down

0 comments on commit 2e31696

Please sign in to comment.