Merge pull request #26955 from albers/completion-fix-logs--since

Fix bash completion for `docker logs --since`
This commit is contained in:
Sebastiaan van Stijn 2016-09-27 20:06:40 +02:00 committed by GitHub
commit e8dc339d43

View file

@ -1406,7 +1406,7 @@ _docker_logs() {
COMPREPLY=( $( compgen -W "--details --follow -f --help --since --tail --timestamps -t" -- "$cur" ) )
;;
*)
local counter=$(__docker_pos_first_nonflag '--tail')
local counter=$(__docker_pos_first_nonflag '--since|--tail')
if [ $cword -eq $counter ]; then
__docker_complete_containers_all
fi