From 65b23359351d487c4bfe68e684fd3a62b56b856c Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Sun, 9 Oct 2011 13:40:23 -0500 Subject: [PATCH] Fix syntax error in the bash-completion script My bad. Signed-off-by: Jack Nagel --- Library/Contributions/brew_bash_completion.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Library/Contributions/brew_bash_completion.sh b/Library/Contributions/brew_bash_completion.sh index 52b7f6fba985..331eeffa3802 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 }