Skip to content
This repository was archived by the owner on Dec 12, 2022. It is now read-only.

Commit 5943886

Browse files
Add "uninstall" as an alias of "remove"
It's really just for my own sanity.
1 parent 2bccfbb commit 5943886

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

ubports-qa

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,10 @@ parser_install.add_argument(
216216
parser_install.set_defaults(func=install_command)
217217

218218
parser_remove = subparsers.add_parser(
219-
"remove", help=remove_command.__doc__, description="Remove and uninstall a ppa"
219+
"remove",
220+
aliases=["uninstall"],
221+
help=remove_command.__doc__,
222+
description="Remove and uninstall a ppa",
220223
)
221224
parser_remove.add_argument("repo", type=str, help="Name of the ppa")
222225
parser_remove.set_defaults(func=remove_command)

0 commit comments

Comments
 (0)