Add bash completion for `plugin disable --force`

Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
Harald Albers 2016-12-31 09:28:03 -08:00 committed by Tibor Vass
parent 70d8efd001
commit 0e0cb6498c
1 changed files with 1 additions and 1 deletions

View File

@ -3219,7 +3219,7 @@ _docker_plugin_create() {
_docker_plugin_disable() {
case "$cur" in
-*)
COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
COMPREPLY=( $( compgen -W "--force -f --help" -- "$cur" ) )
;;
*)
local counter=$(__docker_pos_first_nonflag)