Fix alpha-order mistake in brew bash-completion

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
This commit is contained in:
Jack Nagel 2011-08-29 10:31:13 -05:00
parent dde71e97e7
commit 864c81a61b

View File

@ -50,7 +50,7 @@ _brew_to_completion()
return
;;
# Commands that take an existing brew
abv|cleanup|link|list|ln|ls|remove|rm|test|upgrade|uninstall|unlink)
abv|cleanup|link|list|ln|ls|remove|rm|test|uninstall|unlink|upgrade)
COMPREPLY=( $(compgen -W "$(\ls $(brew --cellar))" -- ${cur}) )
return
;;