aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2011-08-29 10:31:13 -0500
committerJack Nagel2011-08-29 10:31:45 -0500
commit864c81a61b230e2502d1f7c71c10de6f16c9e416 (patch)
tree3e6b129fcaade4b74e949f45bbd58aba0866fc48 /Library
parentdde71e97e724005e2b2b8e7cd1f1d46637780af2 (diff)
downloadbrew-864c81a61b230e2502d1f7c71c10de6f16c9e416.tar.bz2
Fix alpha-order mistake in brew bash-completion
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Contributions/brew_bash_completion.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Contributions/brew_bash_completion.sh b/Library/Contributions/brew_bash_completion.sh
index eaa564918..5b9bef45c 100644
--- a/Library/Contributions/brew_bash_completion.sh
+++ b/Library/Contributions/brew_bash_completion.sh
@@ -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
;;