Merge pull request #1588 from mdsouza2/add-quiet-flag-to-docker-pull

Add quiet flag to bash completion for docker pull
This commit is contained in:
Sebastiaan van Stijn 2019-02-08 23:18:31 +01:00 committed by GitHub
commit 8af4e77994
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -3003,7 +3003,7 @@ _docker_image_pull() {
case "$cur" in
-*)
local options="--all-tags -a --disable-content-trust=false --help"
local options="--all-tags -a --disable-content-trust=false --help --quiet -q"
__docker_server_is_experimental && options+=" --platform"
COMPREPLY=( $( compgen -W "$options" -- "$cur" ) )