2
0
Fork 0

osm-garmin: fix Garmin map never building

main
Ducky 2023-10-01 00:29:50 +01:00
parent e96e34f6ff
commit aa80a9ddaf
1 changed files with 2 additions and 6 deletions

View File

@ -139,13 +139,9 @@ update_bounds
for region in $regions_array; do for region in $regions_array; do
if [[ "$(check_osm_region_exists "$region")" == "true" ]]; then if [[ "$(check_osm_region_exists "$region")" == "true" ]]; then
if [[ "$(check_osm_update "$region")" == "true" ]]; then
echo "🔨 Building Garmin map: $region" echo "🔨 Building Garmin map: $region"
build_gmap "$region" "$style" build_gmap "$region" "$style"
fi fi
else
echo "⚠️ Region \"$region\" does not exist"
fi
done done
echo "🧹 Cleaning up..." echo "🧹 Cleaning up..."