Move bash completion logic to new subcommand: push

Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
Harald Albers 2016-10-24 09:27:44 -07:00 committed by Tibor Vass
parent 3ed53e5641
commit 509d2cc9b6
1 changed files with 12 additions and 12 deletions

View File

@ -2175,7 +2175,17 @@ _docker_image_pull() {
} }
_docker_image_push() { _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() { _docker_image_remove() {
@ -3032,17 +3042,7 @@ _docker_pull() {
} }
_docker_push() { _docker_push() {
case "$cur" in _docker_image_push
-*)
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_rename() { _docker_rename() {