浏览代码

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

Add bash completion for `plugin install --disable-content-trust`
Brian Goff 8 年之前
父节点
当前提交
1bbd75c743
共有 1 个文件被更改,包括 1 次插入1 次删除
  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
 }