From fdc091ed42326867213527f65640a1174f001869 Mon Sep 17 00:00:00 2001 From: Adam Vandenberg Date: Fri, 31 Jul 2009 09:17:10 -0700 Subject: [PATCH] Info also takes installed brews --- Library/Contributions/brew_bash_completion.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Contributions/brew_bash_completion.sh b/Library/Contributions/brew_bash_completion.sh index 18a2e84319..f7eec530e4 100644 --- a/Library/Contributions/brew_bash_completion.sh +++ b/Library/Contributions/brew_bash_completion.sh @@ -19,7 +19,7 @@ _brew_to_completion() brew_base=`dirname ${brew_base}`/.. # Commands that take an existing brew... - if [[ ($prev == "list") || ($prev == "ln") || ($prev == "rm") ]] ; then + if [[ ($prev == "list") || ($prev == "ln") || ($prev == "rm") || ($prev == "info") ]] ; then cellar_contents=`ls ${brew_base}/Cellar/` COMPREPLY=( $(compgen -W "${cellar_contents}" -- ${cur}) ) return 0