mirror of https://github.com/docker/cli.git
Add bash completion for newly added options to "docker plugin ls"
Signed-off-by: Anusha Ragunathan <anusha.ragunathan@docker.com>
This commit is contained in:
parent
d36dd6541a
commit
e41d3a22ce
|
@ -3325,7 +3325,7 @@ _docker_plugin_list() {
|
||||||
_docker_plugin_ls() {
|
_docker_plugin_ls() {
|
||||||
case "$cur" in
|
case "$cur" in
|
||||||
-*)
|
-*)
|
||||||
COMPREPLY=( $( compgen -W "--help --no-trunc" -- "$cur" ) )
|
COMPREPLY=( $( compgen -W "--help --no-trunc --format --quiet" -- "$cur" ) )
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue