Browse Source

Add bash completion for `plugin disable --force`

Signed-off-by: Harald Albers <github@albersweb.de>
(cherry picked from commit e1403453f0a173464ef209e18e661320100a7b42)
Signed-off-by: Victor Vieux <vieux@docker.com>
Harald Albers 8 years ago
parent
commit
ea00b14170
1 changed files with 1 additions and 1 deletions
  1. 1 1
      contrib/completion/bash/docker

+ 1 - 1
contrib/completion/bash/docker

@@ -3223,7 +3223,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)