From 6563b9774e2550e81ba74fa0d4130105b5458a5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Flor=20Chac=C3=B3n?= <14323496+florelis@users.noreply.github.com> Date: Fri, 2 Dec 2022 15:38:14 -0800 Subject: [PATCH] Add `source ls` alias for `source list` (#2736) --- 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;