brew uninstal alias for brew uninstall
If `brew instal` is permissible, `brew uninstal` should be, too.
This commit is contained in:
parent
efd4d1554c
commit
a81bd81a14
@ -207,6 +207,7 @@ case "$HOMEBREW_COMMAND" in
|
||||
up) HOMEBREW_COMMAND="update" ;;
|
||||
ln) HOMEBREW_COMMAND="link" ;;
|
||||
instal) HOMEBREW_COMMAND="install" ;; # gem does the same
|
||||
uninstal) HOMEBREW_COMMAND="uninstall" ;;
|
||||
rm) HOMEBREW_COMMAND="uninstall" ;;
|
||||
remove) HOMEBREW_COMMAND="uninstall" ;;
|
||||
configure) HOMEBREW_COMMAND="diy" ;;
|
||||
|
@ -37,6 +37,7 @@ module Hbc
|
||||
"-S" => "search", # verb starting with "-" is questionable
|
||||
"up" => "update",
|
||||
"instal" => "install", # gem does the same
|
||||
"uninstal" => "uninstall",
|
||||
"rm" => "uninstall",
|
||||
"remove" => "uninstall",
|
||||
"abv" => "info",
|
||||
|
@ -69,6 +69,7 @@ HOMEBREW_INTERNAL_COMMAND_ALIASES = {
|
||||
"up" => "update",
|
||||
"ln" => "link",
|
||||
"instal" => "install", # gem does the same
|
||||
"uninstal" => "uninstall",
|
||||
"rm" => "uninstall",
|
||||
"remove" => "uninstall",
|
||||
"configure" => "diy",
|
||||
|
Loading…
x
Reference in New Issue
Block a user