mirror of https://github.com/docker/cli.git
Merge pull request #702 from albers/completion-log--until
Add bash completion for `logs --until`
This commit is contained in:
commit
b45a49c83f
|
@ -1492,17 +1492,17 @@ _docker_container_kill() {
|
|||
|
||||
_docker_container_logs() {
|
||||
case "$prev" in
|
||||
--since|--tail)
|
||||
--since|--tail|--until)
|
||||
return
|
||||
;;
|
||||
esac
|
||||
|
||||
case "$cur" in
|
||||
-*)
|
||||
COMPREPLY=( $( compgen -W "--details --follow -f --help --since --tail --timestamps -t" -- "$cur" ) )
|
||||
COMPREPLY=( $( compgen -W "--details --follow -f --help --since --tail --timestamps -t --until" -- "$cur" ) )
|
||||
;;
|
||||
*)
|
||||
local counter=$(__docker_pos_first_nonflag '--since|--tail')
|
||||
local counter=$(__docker_pos_first_nonflag '--since|--tail|--until')
|
||||
if [ "$cword" -eq "$counter" ]; then
|
||||
__docker_complete_containers_all
|
||||
fi
|
||||
|
|
Loading…
Reference in New Issue