1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Bash completion supports multiple stacks in stack rm

Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
Harald Albers 2017-04-11 08:29:55 +02:00
parent b764c471bf
commit dc0523313e

View file

@ -4078,11 +4078,7 @@ _docker_stack_rm() {
COMPREPLY=( $( compgen -W "--help" -- "$cur" ) ) COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
;; ;;
*) *)
local counter=$(__docker_pos_first_nonflag) __docker_complete_stacks
if [ $cword -eq $counter ]; then
__docker_complete_stacks
fi
;;
esac esac
} }