aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2010-10-07 20:27:12 -0700
committerAdam Vandenberg2010-10-07 20:27:12 -0700
commitfdc33e92f8010b39c9c63b32c276468c816888bf (patch)
treebfb134869c99d052810b53462f5e259c3e1547f4 /Library
parent3e21513fa8a8b9c6b6086377e755d4e44f7e921d (diff)
downloadhomebrew-fdc33e92f8010b39c9c63b32c276468c816888bf.tar.bz2
add test to completion
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 07571f79a..e12d375d2 100644
--- a/Library/Contributions/brew_bash_completion.sh
+++ b/Library/Contributions/brew_bash_completion.sh
@@ -35,7 +35,7 @@ _brew_to_completion()
return
;;
# Commands that take an existing brew
- abv|cleanup|link|list|ln|ls|remove|rm|uninstall|unlink)
+ abv|cleanup|link|list|ln|ls|remove|rm|test|uninstall|unlink)
COMPREPLY=( $(compgen -W "$(\ls $(brew --cellar))" -- ${cur}) )
return
;;