From d501b256e5a81176b4efe0b3f008ddf090b29b39 Mon Sep 17 00:00:00 2001 From: Adam Vandenberg Date: Thu, 7 Oct 2010 20:27:12 -0700 Subject: [PATCH] add test to completion --- 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 07571f79aa..e12d375d26 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 ;;