Remove bash completion for `docker volume create --name`

Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
Harald Albers 2016-08-31 09:50:11 +02:00 committed by Tibor Vass
parent 9c9cd1a439
commit a916015f46
1 changed files with 2 additions and 2 deletions

View File

@ -2788,14 +2788,14 @@ _docker_volume_create() {
__docker_complete_plugins Volume
return
;;
--label|--name|--opt|-o)
--label|--opt|-o)
return
;;
esac
case "$cur" in
-*)
COMPREPLY=( $( compgen -W "--driver -d --help --label --name --opt -o" -- "$cur" ) )
COMPREPLY=( $( compgen -W "--driver -d --help --label --opt -o" -- "$cur" ) )
;;
esac
}