From 692b0a7afe89e4d90a4e926c08404be2be79fe5f Mon Sep 17 00:00:00 2001 From: Yaser Kalali <85274632+yaskinny@users.noreply.github.com> Date: Mon, 15 May 2023 14:06:15 +0330 Subject: [PATCH] Fix issues in compose and quickstart.sh (#1530) * Chore(quickstart.sh): Handle spaces in fonts name when calculating their md5 digest * Chore(Makefile): Change docker pull to docker-compose pull to read image from compose file --- Makefile | 2 +- quickstart.sh | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index eecb4ccc..b7c22a00 100644 --- a/Makefile +++ b/Makefile @@ -499,7 +499,7 @@ start-tileserver: init-dirs build-style download-fonts @echo "* " @echo "***********************************************************" @echo " " - docker pull maptiler/tileserver-gl + $(DOCKER_COMPOSE_COMMAND) pull tileserver-gl @echo " " @echo "***********************************************************" @echo "* " diff --git a/quickstart.sh b/quickstart.sh index adfeeff1..d82b4470 100755 --- a/quickstart.sh +++ b/quickstart.sh @@ -313,8 +313,7 @@ echo "-------------------------------------------------------------------------- echo "====> : Inputs - Outputs md5sum for debugging " rm -f ./data/quickstart_checklist.chk { - find build -type f | sort | xargs md5sum - find data -type f | sort | xargs md5sum + find build data -type f -exec md5sum {} + | sort -k2 } >> ./data/quickstart_checklist.chk cat ./data/quickstart_checklist.chk