From 3f9b6e82b535b35b1ca9961cc74d3f6842b3f4ab Mon Sep 17 00:00:00 2001 From: Konstantin Pastbin Date: Wed, 3 Dec 2025 21:31:39 +0700 Subject: [PATCH] [generator] Fix GENARGS in docker_maps_generator.sh Signed-off-by: Konstantin Pastbin --- tools/unix/maps/docker_maps_generator.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/unix/maps/docker_maps_generator.sh b/tools/unix/maps/docker_maps_generator.sh index e1f588122..b910d8a99 100644 --- a/tools/unix/maps/docker_maps_generator.sh +++ b/tools/unix/maps/docker_maps_generator.sh @@ -31,22 +31,22 @@ python3 -m venv /tmp/venv echo "<$(date +%T)> Copying map generator INI..." cp var/etc/map_generator.ini.prod var/etc/map_generator.ini -$GENARGS="" +GENARGS="" if [ $MWMTEST -gt 0 ]; 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" + GENARGS="$GENARGS -s=test" fi if [ $MWMCONTINUE -gt 0 ]; then echo "Continuing from preexisting generator run" - $GENARGS="$GENARGS --continue" + GENARGS="$GENARGS --continue" fi if [[ -n $MWMCOUNTRIES ]]; then echo "Generating only specific maps for [$MWMCOUNTRIES]" - $GENARGS="$GENARGS --countries=$MWMCOUNTRIES" + GENARGS="$GENARGS --countries=$MWMCOUNTRIES" fi cd ~/comaps/tools/python