mirror of
https://github.com/systemed/tilemaker
synced 2026-03-20 02:53:00 +01:00
10 lines
213 B
Bash
Executable file
10 lines
213 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -o errexit
|
|
set -o pipefail
|
|
set -o nounset
|
|
|
|
|
|
if ! [ -f "monaco-latest.osm.pbf" ]; then
|
|
curl --proto '=https' --tlsv1.3 -sSfO https://download.geofabrik.de/europe/monaco-latest.osm.pbf
|
|
fi
|