Browse Source

Merge pull request #30125 from albers/completion-plugin-install--disable-content-trust

Add bash completion for `plugin install --disable-content-trust`
Brian Goff 8 years ago
parent
commit
1bbd75c743
1 changed files with 1 additions and 1 deletions
  1. 1 1
      contrib/completion/bash/docker

+ 1 - 1
contrib/completion/bash/docker

@@ -3286,7 +3286,7 @@ _docker_plugin_install() {
 
 	case "$cur" in
 		-*)
-			COMPREPLY=( $( compgen -W "--alias --disable --grant-all-permissions --help" -- "$cur" ) )
+			COMPREPLY=( $( compgen -W "--alias --disable --disable-content-trust=false --grant-all-permissions --help" -- "$cur" ) )
 			;;
 	esac
 }