1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

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

Add bash completion for `plugin install --disable-content-trust`
This commit is contained in:
Brian Goff 2017-01-14 09:04:51 -05:00 committed by GitHub
commit 1bbd75c743

View file

@ -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
}