brew uninstal alias for brew uninstall

If `brew instal` is permissible, `brew uninstal` should be, too.
This commit is contained in:
ilovezfs 2017-02-21 04:35:52 -08:00
parent efd4d1554c
commit a81bd81a14
3 changed files with 3 additions and 0 deletions

View File

@ -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" ;;

View File

@ -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",

View File

@ -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",