mirror of https://github.com/docker/cli.git
Fix bash completion for `events --filter daemon=`
Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
parent
21eea1e003
commit
3f7b156c85
|
@ -5081,7 +5081,7 @@ _docker_system_events() {
|
||||||
return
|
return
|
||||||
;;
|
;;
|
||||||
daemon)
|
daemon)
|
||||||
local name=$(__docker_q info | sed -n 's/^\(ID\|Name\): //p')
|
local name=$(__docker_q info --format '{{.Info.Name}} {{.Info.ID}}')
|
||||||
COMPREPLY=( $( compgen -W "$name" -- "${cur##*=}" ) )
|
COMPREPLY=( $( compgen -W "$name" -- "${cur##*=}" ) )
|
||||||
return
|
return
|
||||||
;;
|
;;
|
||||||
|
|
Loading…
Reference in New Issue