mirror of
https://github.com/openmaptiles/openmaptiles.git
synced 2025-12-08 18:02:18 +00:00
Update quickstart.sh (#1740)
fix #1739 - `quickstart.sh` will not write out the help message instead of the version.
This commit is contained in:
parent
077e7627f1
commit
b799c4eaf3
@ -84,9 +84,13 @@ fi
|
||||
|
||||
function docker_compose_command () {
|
||||
if $DOCKER_COMPOSE_HYPHEN; then
|
||||
docker-compose $@
|
||||
docker-compose "$@"
|
||||
else
|
||||
docker compose $@
|
||||
if [[ "$1" == "--version" ]]; then
|
||||
docker compose version
|
||||
else
|
||||
docker compose "$@"
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user