Bash: update trust completions

The `docker trust` commands were moved out of experimental,
and the `docker trust view` command was changed to
`docker trust inspect --pretty`.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn 2018-03-14 01:01:25 +01:00
parent 176aa4865c
commit 2a6808db87
No known key found for this signature in database
GPG Key ID: 76698F39D527CE8C
1 changed files with 16 additions and 16 deletions

View File

@ -4713,9 +4713,9 @@ _docker_tag() {
_docker_trust() {
local subcommands="
inspect
revoke
sign
view
"
__docker_subcommands "$subcommands" && return
@ -4729,6 +4729,20 @@ _docker_trust() {
esac
}
_docker_trust_inspect() {
case "$cur" in
-*)
COMPREPLY=( $( compgen -W "--help --pretty" -- "$cur" ) )
;;
*)
local counter=$(__docker_pos_first_nonflag)
if [ "$cword" -eq "$counter" ]; then
__docker_complete_images --repo --tag
fi
;;
esac
}
_docker_trust_revoke() {
case "$cur" in
-*)
@ -4757,20 +4771,6 @@ _docker_trust_sign() {
esac
}
_docker_trust_view() {
case "$cur" in
-*)
COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
;;
*)
local counter=$(__docker_pos_first_nonflag)
if [ "$cword" -eq "$counter" ]; then
__docker_complete_images --repo --tag
fi
;;
esac
}
_docker_unpause() {
_docker_container_unpause
@ -4947,6 +4947,7 @@ _docker() {
stack
swarm
system
trust
volume
)
@ -4999,7 +5000,6 @@ _docker() {
local experimental_commands=(
checkpoint
deploy
trust
)
local commands=(${management_commands[*]} ${top_level_commands[*]})