diff options
| author | Adam Vandenberg | 2010-03-19 11:56:11 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2010-03-19 11:56:11 -0700 |
| commit | 97b66ea1debc4c85d1d98810376fc8caff862034 (patch) | |
| tree | 4ba8da7c2a6d8a558f25cf88e0ac54e8a0edd0f1 /Library | |
| parent | d9548ae4b0faea5ff7b640899ec83038f90ba1d2 (diff) | |
| download | brew-97b66ea1debc4c85d1d98810376fc8caff862034.tar.bz2 | |
Add log to bash completions.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Contributions/brew_bash_completion.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Contributions/brew_bash_completion.sh b/Library/Contributions/brew_bash_completion.sh index ae5342a81..86c4036e6 100644 --- a/Library/Contributions/brew_bash_completion.sh +++ b/Library/Contributions/brew_bash_completion.sh @@ -12,7 +12,7 @@ _brew_to_completion() cur="${COMP_WORDS[COMP_CWORD]}" # We only complete unabbreviated commands... - actions="cat cleanup configure create deps edit generate homepage info install list link outdated prune remove search unlink update uses" + actions="cat cleanup configure create deps edit generate homepage info install list link log outdated prune remove search unlink update uses" if [[ ( ${COMP_CWORD} -eq 1 ) && ( ${COMP_WORDS[0]} == brew ) ]] ; then # Subcommand list @@ -33,7 +33,7 @@ _brew_to_completion() case ${prev} in # Commands that take a formula... - cat|deps|edit|install|home|homepage|uses) + cat|deps|edit|home|homepage|install|log|uses) formulae=`ls ${brew_base}/Library/Formula/ | sed "s/\.rb//g"` COMPREPLY=( $(compgen -W "${formulae}" -- ${cur}) ) return 0 |
