Browse Source

autocompletion for stack migrate

bugfixes
harshadyeola 10 years ago
parent
commit
0ba07b5ef0
  1. 8
      config/bash_completion.d/ee_auto.rc

8
config/bash_completion.d/ee_auto.rc

@ -35,7 +35,7 @@ _ee_complete()
"stack") "stack")
COMPREPLY=( $(compgen \ COMPREPLY=( $(compgen \
-W "install purge reload remove restart start status stop" \ -W "install purge reload remove restart start status stop migrate" \
-- $cur) ) -- $cur) )
;; ;;
@ -82,7 +82,11 @@ _ee_complete()
-W "--nginx --php --mysql --postfix --memcache --dovecot" \ -W "--nginx --php --mysql --postfix --memcache --dovecot" \
-- $cur) ) -- $cur) )
;; ;;
"migrate")
COMPREPLY=( $(compgen \
-W "--mariadb" \
-- $cur) )
;;
"list") "list")
COMPREPLY=( $(compgen \ COMPREPLY=( $(compgen \
-W "--enabled --disabled" \ -W "--enabled --disabled" \

Loading…
Cancel
Save