mirror of https://github.com/docker/cli.git
Merge pull request #3392 from varp/make_compose_plugin_detection_compatible_with_posix_bre
make compose plugin detection in bash completion work on Mac OS
This commit is contained in:
commit
fe65559058
|
@ -5486,7 +5486,7 @@ _docker_wait() {
|
||||||
_docker_container_wait
|
_docker_container_wait
|
||||||
}
|
}
|
||||||
|
|
||||||
COMPOSE_PLUGIN_PATH=$(docker info --format '{{json .ClientInfo.Plugins}}' | sed -n 's/.*"Path":"\([^"]\+docker-compose\)".*/\1/p')
|
COMPOSE_PLUGIN_PATH=$(docker info --format '{{range .ClientInfo.Plugins}}{{if eq .Name "compose"}}{{.Path}}{{end}}{{end}}')
|
||||||
|
|
||||||
_docker_compose() {
|
_docker_compose() {
|
||||||
local completionCommand="__completeNoDesc"
|
local completionCommand="__completeNoDesc"
|
||||||
|
|
Loading…
Reference in New Issue