aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2009-07-31 09:17:10 -0700
committerMax Howell2009-08-02 01:25:02 +0100
commitfdc091ed42326867213527f65640a1174f001869 (patch)
treee8a8f100df83e574ea5ddfd57d0dbc552bf4f7a7 /Library
parent7478ff7804cb0d9a1e777360fdd67b7a32c353f1 (diff)
downloadbrew-fdc091ed42326867213527f65640a1174f001869.tar.bz2
Info also takes installed brews
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 18a2e8431..f7eec530e 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