mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #29413 from albers/completion-deploy-experimental
Make bash completion for `docker stack deploy --bundle-file` available only in experimental mode
This commit is contained in:
commit
9a30560fda
1 changed files with 7 additions and 3 deletions
|
@ -3514,8 +3514,10 @@ _docker_stack() {
|
||||||
_docker_stack_deploy() {
|
_docker_stack_deploy() {
|
||||||
case "$prev" in
|
case "$prev" in
|
||||||
--bundle-file)
|
--bundle-file)
|
||||||
_filedir dab
|
if __docker_is_experimental ; then
|
||||||
return
|
_filedir dab
|
||||||
|
return
|
||||||
|
fi
|
||||||
;;
|
;;
|
||||||
--compose-file|-c)
|
--compose-file|-c)
|
||||||
_filedir yml
|
_filedir yml
|
||||||
|
@ -3525,7 +3527,9 @@ _docker_stack_deploy() {
|
||||||
|
|
||||||
case "$cur" in
|
case "$cur" in
|
||||||
-*)
|
-*)
|
||||||
COMPREPLY=( $( compgen -W "--bundle-file --compose-file -c --help --with-registry-auth" -- "$cur" ) )
|
local options="--compose-file -c --help --with-registry-auth"
|
||||||
|
__docker_is_experimental && options+=" --bundle-file"
|
||||||
|
COMPREPLY=( $( compgen -W "$options" -- "$cur" ) )
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue