Merge pull request #4640 from albers/completion-up--exit-code-from

Fix bash completion for `up --exit-code-from`
This commit is contained in:
Joffrey F 2017-03-20 11:36:07 -07:00 committed by GitHub
commit 566cd1b1e4
1 changed files with 5 additions and 1 deletions

View File

@ -498,6 +498,10 @@ _docker_compose_unpause() {
_docker_compose_up() {
case "$prev" in
--exit-code-from)
__docker_compose_services_all
return
;;
--timeout|-t)
return
;;
@ -505,7 +509,7 @@ _docker_compose_up() {
case "$cur" in
-*)
COMPREPLY=( $( compgen -W "--exit-code-from --abort-on-container-exit --build -d --force-recreate --help --no-build --no-color --no-deps --no-recreate --timeout -t --remove-orphans" -- "$cur" ) )
COMPREPLY=( $( compgen -W "--abort-on-container-exit --build -d --exit-code-from --force-recreate --help --no-build --no-color --no-deps --no-recreate --timeout -t --remove-orphans" -- "$cur" ) )
;;
*)
__docker_compose_services_all