Skip to content
Snippets Groups Projects
Commit dde71e97 authored by Jack Nagel's avatar Jack Nagel
Browse files

Add `upgrade` to the bash-completion script


Signed-off-by: default avatarJack Nagel <jacknagel@gmail.com>
parent de56768c
No related branches found
No related tags found
No related merge requests found
......@@ -11,7 +11,7 @@ _brew_to_completion()
[[ ${COMP_CWORD} -eq 1 ]] && {
local actions="--cache --cellar --config --env --prefix --repository audit cat cleanup
configure create deps doctor edit fetch help home info install link list log options
outdated prune remove search test uninstall unlink update uses versions"
outdated prune remove search test uninstall unlink update upgrade uses versions"
local ext=$(\ls $(brew --repository)/Library/Contributions/examples |
sed -e "s/\.rb//g" -e "s/brew-//g")
COMPREPLY=( $(compgen -W "${actions} ${ext}" -- ${cur}) )
......@@ -50,7 +50,7 @@ _brew_to_completion()
return
;;
# Commands that take an existing brew
abv|cleanup|link|list|ln|ls|remove|rm|test|uninstall|unlink)
abv|cleanup|link|list|ln|ls|remove|rm|test|upgrade|uninstall|unlink)
COMPREPLY=( $(compgen -W "$(\ls $(brew --cellar))" -- ${cur}) )
return
;;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment