From 52b5bea03e1a6d25f009176ee3fd5f249b15401a Mon Sep 17 00:00:00 2001 From: Rob Reynolds Date: Wed, 6 Mar 2019 15:36:36 -0600 Subject: [PATCH] (GH-1744) add "find" alias for search command Add the alias `choco find` for `choco search` and currently `choco list` to the items that can run the command for searching. --- .../infrastructure.app/commands/ChocolateyListCommand.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/chocolatey/infrastructure.app/commands/ChocolateyListCommand.cs b/src/chocolatey/infrastructure.app/commands/ChocolateyListCommand.cs index df85786601..782cdaae7f 100644 --- a/src/chocolatey/infrastructure.app/commands/ChocolateyListCommand.cs +++ b/src/chocolatey/infrastructure.app/commands/ChocolateyListCommand.cs @@ -28,6 +28,7 @@ namespace chocolatey.infrastructure.app.commands [CommandFor("list", "lists remote or local packages")] [CommandFor("search", "searches remote or local packages (alias for list)")] + [CommandFor("find", "searches remote or local packages (alias for search)")] public class ChocolateyListCommand : IListCommand { private readonly IChocolateyPackageService _packageService;