Add file completion to bash completion for `secret create`

Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
Harald Albers 2017-07-26 13:06:22 +02:00
parent 7cf9e752d5
commit abc793e333
1 changed files with 7 additions and 1 deletions

View File

@ -1184,7 +1184,7 @@ _docker_config_create() {
;; ;;
*) *)
local counter=$(__docker_pos_first_nonflag '--label|-l') local counter=$(__docker_pos_first_nonflag '--label|-l')
if [ "$cword" -eq $((counter + 1)) ]; then if [ "$cword" -eq "$((counter + 1))" ]; then
_filedir _filedir
fi fi
;; ;;
@ -4159,6 +4159,12 @@ _docker_secret_create() {
-*) -*)
COMPREPLY=( $( compgen -W "--help --label -l" -- "$cur" ) ) COMPREPLY=( $( compgen -W "--help --label -l" -- "$cur" ) )
;; ;;
*)
local counter=$(__docker_pos_first_nonflag '--label|-l')
if [ "$cword" -eq "$((counter + 1))" ]; then
_filedir
fi
;;
esac esac
} }