aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2009-08-03 11:13:08 +0800
committerMax Howell2009-08-04 07:48:26 +0800
commitbfa17cc16c2641ca2b240c71dc5dcb1726b61a3d (patch)
treeb39ac9f8a91857e1c3ca277bcef8ae6f1f5c2063 /Library
parent33b90794e1cb6c9659b1bb1e7709cc6568820b1d (diff)
downloadbrew-bfa17cc16c2641ca2b240c71dc5dcb1726b61a3d.tar.bz2
Homepage takes any formula, installed or not.
Signed-off-by: Max Howell <max@methylblue.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Contributions/brew_bash_completion.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Contributions/brew_bash_completion.sh b/Library/Contributions/brew_bash_completion.sh
index e2eaf2446..dd18faa03 100644
--- a/Library/Contributions/brew_bash_completion.sh
+++ b/Library/Contributions/brew_bash_completion.sh
@@ -28,14 +28,14 @@ _brew_to_completion()
case ${prev} in
# Commands that take a formula...
- edit|install|home)
+ edit|install|home|homepage)
formulae=`ls ${brew_base}/Library/Formula/ | sed "s/\.rb//g"`
COMPREPLY=( $(compgen -W "${formulae}" -- ${cur}) )
return 0
;;
# Commands that take an existing brew...
- abv|home|homepage|info|list|link|ls|ln|rm|uninstall)
+ abv|info|list|link|ls|ln|rm|uninstall)
cellar_contents=`ls ${brew_base}/Cellar/`
COMPREPLY=( $(compgen -W "${cellar_contents}" -- ${cur}) )
return 0