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
commita110f5ed233616a826a162fd2a3f9473dfbc1fe5 (patch)
tree7ff9311d9ed98654b29e986b0b051d4319c65fe2 /Library
parent1d4cf1642456f4a1bf6b2b15ccbdd271b05ac836 (diff)
downloadhomebrew-a110f5ed233616a826a162fd2a3f9473dfbc1fe5.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
;;