Move bash completion logic to new subcommand: push
Signed-off-by: Harald Albers <github@albersweb.de>
Upstream-commit: 509d2cc9b6
Component: cli
This commit is contained in:
committed by
Tibor Vass
parent
2155ce0488
commit
71cc67a754
@ -2175,7 +2175,17 @@ _docker_image_pull() {
|
||||
}
|
||||
|
||||
_docker_image_push() {
|
||||
_docker_push
|
||||
case "$cur" in
|
||||
-*)
|
||||
COMPREPLY=( $( compgen -W "--disable-content-trust=false --help" -- "$cur" ) )
|
||||
;;
|
||||
*)
|
||||
local counter=$(__docker_pos_first_nonflag)
|
||||
if [ $cword -eq $counter ]; then
|
||||
__docker_complete_image_repos_and_tags
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
||||
_docker_image_remove() {
|
||||
@ -3032,17 +3042,7 @@ _docker_pull() {
|
||||
}
|
||||
|
||||
_docker_push() {
|
||||
case "$cur" in
|
||||
-*)
|
||||
COMPREPLY=( $( compgen -W "--disable-content-trust=false --help" -- "$cur" ) )
|
||||
;;
|
||||
*)
|
||||
local counter=$(__docker_pos_first_nonflag)
|
||||
if [ $cword -eq $counter ]; then
|
||||
__docker_complete_image_repos_and_tags
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
_docker_image_push
|
||||
}
|
||||
|
||||
_docker_rename() {
|
||||
|
||||
Reference in New Issue
Block a user