9 lines
231 B
Bash
Executable file
9 lines
231 B
Bash
Executable file
#!/bin/sh
|
|
# Stop this script on the first failure (e.g. cannot create the output folder)
|
|
set -e
|
|
|
|
echo "[INFO] Start rendering..."
|
|
|
|
java -jar /opt/blockmap/blockmap.jar render-many /config.json $@
|
|
|
|
echo "[INFO] Rendering finished!"
|