mirror of https://github.com/docker/cli.git
Add support for multiple nodes in bash completion for `docker node ps`
Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
parent
3171c7b6e7
commit
62e87d4996
|
@ -2104,10 +2104,7 @@ _docker_node_ps() {
|
||||||
COMPREPLY=( $( compgen -W "--all -a --filter -f --help --no-resolve --no-trunc" -- "$cur" ) )
|
COMPREPLY=( $( compgen -W "--all -a --filter -f --help --no-resolve --no-trunc" -- "$cur" ) )
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
local counter=$(__docker_pos_first_nonflag '--filter|-f')
|
__docker_complete_nodes_plus_self
|
||||||
if [ $cword -eq $counter ]; then
|
|
||||||
__docker_complete_nodes_plus_self
|
|
||||||
fi
|
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue