2020-07-09 22:52:12 +02:00
|
|
|
#!/bin/sh
|
2019-06-10 02:00:34 +02:00
|
|
|
# Stop this script on the first failure (e.g. cannot create the output folder)
|
|
|
|
set -e
|
|
|
|
|
2020-07-09 22:52:12 +02:00
|
|
|
echo "[INFO] Start rendering..."
|
2019-06-10 02:00:34 +02:00
|
|
|
|
2020-07-10 01:22:29 +02:00
|
|
|
java -jar /opt/blockmap/blockmap.jar render-many /config.json $@
|
2019-06-18 15:14:23 +02:00
|
|
|
|
2019-06-10 02:00:34 +02:00
|
|
|
echo "[INFO] Rendering finished!"
|