Merge pull request #25442 from albers/completion--env

Fix bash completion for `docker service {create,update} {-e,--env}`
This commit is contained in:
Lei Jitang 2016-08-06 10:47:18 +08:00 committed by GitHub
commit b72a41b32e
1 changed files with 3 additions and 1 deletions

View File

@ -1788,7 +1788,8 @@ _docker_service_update() {
return
;;
--env|-e)
COMPREPLY=( $( compgen -e -S = -- "$cur" ) )
# we do not append a "=" here because "-e VARNAME" is legal systax, too
COMPREPLY=( $( compgen -e -- "$cur" ) )
__docker_nospace
return
;;
@ -2457,6 +2458,7 @@ _docker_run() {
return
;;
--env|-e)
# we do not append a "=" here because "-e VARNAME" is legal systax, too
COMPREPLY=( $( compgen -e -- "$cur" ) )
__docker_nospace
return