Merge pull request #701 from albers/completion-trust-sign--local

Add bash completion for `trust sign --local`
This commit is contained in:
Sebastiaan van Stijn 2017-11-29 09:44:53 -08:00 committed by GitHub
commit e5d49c0199
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -4706,7 +4706,7 @@ _docker_trust_revoke() {
_docker_trust_sign() {
case "$cur" in
-*)
COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
COMPREPLY=( $( compgen -W "--help --local" -- "$cur" ) )
;;
*)
local counter=$(__docker_pos_first_nonflag)