From 93b777dd38e4b90b4b58fc9dadb005ff59dbee5f Mon Sep 17 00:00:00 2001 From: Flor Elisa Chacon Ochoa Date: Fri, 2 Dec 2022 13:55:08 -0800 Subject: [PATCH] Add `source ls` alias for `source list` --- src/AppInstallerCLICore/Commands/SourceCommand.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AppInstallerCLICore/Commands/SourceCommand.h b/src/AppInstallerCLICore/Commands/SourceCommand.h index c0b1a581db..9c54e6b164 100644 --- a/src/AppInstallerCLICore/Commands/SourceCommand.h +++ b/src/AppInstallerCLICore/Commands/SourceCommand.h @@ -37,7 +37,7 @@ namespace AppInstaller::CLI struct SourceListCommand final : public Command { - SourceListCommand(std::string_view parent) : Command("list", parent) {} + SourceListCommand(std::string_view parent) : Command("list", { "ls" }, parent) {} std::vector GetArguments() const override;