aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2011-10-09 13:40:23 -0500
committerJack Nagel2011-10-09 13:40:49 -0500
commit558ce2dd3d1c12154d2319e300d1009f9c3cc528 (patch)
treebb4f160d765d4080027e599150cee26f7ebfbf0d /Library
parentcc7efdc94d3671764853536f3345a7cfd3b00577 (diff)
downloadbrew-558ce2dd3d1c12154d2319e300d1009f9c3cc528.tar.bz2
Fix syntax error in the bash-completion script
My bad. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Contributions/brew_bash_completion.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/Library/Contributions/brew_bash_completion.sh b/Library/Contributions/brew_bash_completion.sh
index 52b7f6fba..331eeffa3 100644
--- a/Library/Contributions/brew_bash_completion.sh
+++ b/Library/Contributions/brew_bash_completion.sh
@@ -57,6 +57,8 @@ _brew_to_completion()
# Commands that take an outdated brew
upgrade)
COMPREPLY=( $(compgen -W "$(brew outdated --quiet)" -- ${cur}) )
+ return
+ ;;
esac
}