Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a few more command aliases #4822

Merged
merged 2 commits into from
Sep 23, 2024
Merged
Show file tree
Hide file tree
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: 0 additions & 3 deletions .github/actions/spelling/expect.txt
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,6 @@ ronomon
Roronoa
rosoft
rowid
rowids
roy
rpwgpm
RRF
Expand Down Expand Up @@ -556,7 +555,6 @@ taskhostw
tcs
TEMPDIRECTORY
templating
Templating
temppath
testexampleinstaller
thiscouldbeapc
Expand Down Expand Up @@ -613,7 +611,6 @@ WDAG
webpages
Webserver
website
websites
wesome
wfsopen
wgetenv
Expand Down
2 changes: 1 addition & 1 deletion src/AppInstallerCLICore/Commands/ConfigureCommand.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ using namespace AppInstaller::CLI::Workflow;
namespace AppInstaller::CLI
{
ConfigureCommand::ConfigureCommand(std::string_view parent) :
Command("configure", { "configuration" }, parent, Settings::TogglePolicy::Policy::Configuration)
Command("configure", { "configuration", "dsc"}, parent, Settings::TogglePolicy::Policy::Configuration)
{
SelectCurrentCommandIfUnrecognizedSubcommandFound(true);
}
Expand Down
2 changes: 1 addition & 1 deletion src/AppInstallerCLICore/Commands/RepairCommand.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace AppInstaller::CLI
{
struct RepairCommand final : public Command
{
RepairCommand(std::string_view parent) : Command("repair", parent) {}
RepairCommand(std::string_view parent) : Command("repair", { "fix" }, parent) {}

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

Expand Down
Loading