Move zsh completion logic to new subcommand: push

Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
This commit is contained in:
Steve Durrheimer 2016-10-30 21:58:28 +01:00 committed by Tibor Vass
parent e3d224e520
commit 82dfd60819
1 changed files with 5 additions and 5 deletions

View File

@ -980,7 +980,10 @@ __docker_image_subcommand() {
"($help -):name:__docker_search" && ret=0
;;
(push)
__docker_subcommand && ret=0
_arguments $(__docker_arguments) \
$opts_help \
"($help)--disable-content-trust[Skip image signing]" \
"($help -): :__docker_complete_images" && ret=0
;;
(rm)
words[1]='rmi'
@ -2216,10 +2219,7 @@ __docker_subcommand() {
__docker_image_subcommand && ret=0
;;
(push)
_arguments $(__docker_arguments) \
$opts_help \
"($help)--disable-content-trust[Skip image signing]" \
"($help -): :__docker_complete_images" && ret=0
__docker_image_subcommand && ret=0
;;
(rmi)
_arguments $(__docker_arguments) \