Bash completion for `docker node update` completes only one node

`docker node update` accepts only one node.
Before this change, bash completion would complete additional nodes.

Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
Harald Albers 2017-03-17 09:33:55 +01:00 committed by Tibor Vass
parent 30b0334917
commit bd1c58ccaf
1 changed files with 5 additions and 1 deletions

View File

@ -3526,7 +3526,11 @@ _docker_node_update() {
COMPREPLY=( $( compgen -W "--availability --help --label-add --label-rm --role" -- "$cur" ) )
;;
*)
local counter=$(__docker_pos_first_nonflag '--availability|--label-add|--label-rm|--role')
if [ $cword -eq $counter ]; then
__docker_complete_nodes
fi
;;
esac
}