mirror of https://github.com/docker/cli.git
Fix bash completion for `service update --force`
- `--force` is not available in `service create` - `--force` is a boolean option Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
parent
29625f6124
commit
5fa5eb1da6
|
@ -3395,7 +3395,6 @@ _docker_service_update_and_create() {
|
|||
local options_with_args="
|
||||
--endpoint-mode
|
||||
--entrypoint
|
||||
--force
|
||||
--health-cmd
|
||||
--health-interval
|
||||
--health-retries
|
||||
|
@ -3521,6 +3520,10 @@ _docker_service_update_and_create() {
|
|||
--secret-rm
|
||||
"
|
||||
|
||||
boolean_options="$boolean_options
|
||||
--force
|
||||
"
|
||||
|
||||
case "$prev" in
|
||||
--env-rm)
|
||||
COMPREPLY=( $( compgen -e -- "$cur" ) )
|
||||
|
|
Loading…
Reference in New Issue