mirror of https://github.com/docker/cli.git
Fix bash completion for `--log-opt mode`
Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
parent
f8462e533e
commit
af095f572e
|
@ -790,7 +790,7 @@ __docker_complete_log_driver_options() {
|
|||
return
|
||||
;;
|
||||
mode)
|
||||
COMPREPLY=( $( compgen -W "blocking nonblocking" -- "${cur##*=}" ) )
|
||||
COMPREPLY=( $( compgen -W "blocking non-blocking" -- "${cur##*=}" ) )
|
||||
return
|
||||
;;
|
||||
syslog-address)
|
||||
|
|
Loading…
Reference in New Issue