Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/AppInstallerCLICore/Commands/ShowCommand.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace AppInstaller::CLI
{
struct ShowCommand final : public Command
{
ShowCommand(std::string_view parent) : Command("show", { "view" }, parent) {}
ShowCommand(std::string_view parent) : Command("show", { "view", "info", "information", "details" }, parent) {}

std::vector<Argument> GetArguments() const override;

Expand All @@ -23,3 +23,4 @@ namespace AppInstaller::CLI
void ExecuteInternal(AppInstaller::CLI::Execution::Context& context) const override;
};
}