mirror of
https://github.com/hyperknot/openfreemap.git
synced 2026-05-21 22:12:15 +00:00
12 lines
197 B
Bash
12 lines
197 B
Bash
#!/usr/bin/env bash
|
|
|
|
DATE=$(date +"%Y%m%d_%H%M%S")
|
|
|
|
RUN_FOLDER="/data/ofm/runs/monaco_$DATE"
|
|
|
|
mkdir -p "$RUN_FOLDER"
|
|
cd "$RUN_FOLDER" || exit
|
|
|
|
bash /data/ofm/tile_gen/planetiler_monaco.sh "$DATE"
|
|
|