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
1 changed files with 1 additions and 5 deletions

View File

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