Support multiple services on bash completion for `docker service ps`

Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
Harald Albers 2017-01-03 05:58:13 -08:00
parent 884a1c2263
commit 3f5d11c9bf
1 changed files with 1 additions and 4 deletions

View File

@ -2689,10 +2689,7 @@ _docker_service_ps() {
COMPREPLY=( $( compgen -W "--filter -f --help --no-resolve --no-trunc --quiet -q" -- "$cur" ) ) COMPREPLY=( $( compgen -W "--filter -f --help --no-resolve --no-trunc --quiet -q" -- "$cur" ) )
;; ;;
*) *)
local counter=$(__docker_pos_first_nonflag '--filter|-f') __docker_complete_services
if [ $cword -eq $counter ]; then
__docker_complete_services
fi
;; ;;
esac esac
} }