From a04b59b047f7497b91e13ea57df448addf2cd468 Mon Sep 17 00:00:00 2001 From: Konstantin Pastbin Date: Fri, 5 Dec 2025 15:21:16 +0700 Subject: [PATCH] fix env comparison --- tools/unix/maps/docker_maps_generator.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/unix/maps/docker_maps_generator.sh b/tools/unix/maps/docker_maps_generator.sh index 5a2df8e59..db04170a8 100644 --- a/tools/unix/maps/docker_maps_generator.sh +++ b/tools/unix/maps/docker_maps_generator.sh @@ -33,13 +33,13 @@ cp var/etc/map_generator.ini.prod var/etc/map_generator.ini GENARGS="" -if [ $MWMTEST -eq "true" ]; then +if [ $MWMTEST == "true" ]; then echo "Marking as a test (non-prod) generation" # TODO: output test maps into e.g. osm-maps-test/ and use a different generation.log GENARGS="$GENARGS -s=test" fi -if [ $MWMCONTINUE -eq "true" ]; then +if [ $MWMCONTINUE == "true" ]; then echo "Continuing from preexisting generator run" GENARGS="$GENARGS --continue" fi