mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2024-06-07 19:40:43 +00:00
19 lines
562 B
Plaintext
19 lines
562 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
. /start-utils
|
||
|
|
||
|
if ! [[ -v CURSE_INSTANCE_JSON ]]; then
|
||
|
log "ERROR: CURSE_INSTANCE_JSON needs to be set"
|
||
|
exit 2
|
||
|
elif ! [ -f "${CURSE_INSTANCE_JSON}" ] && [ -f "${CURSE_INSTANCE_JSON}/minecraftinstance.json" ]; then
|
||
|
CURSE_INSTANCE_JSON="${CURSE_INSTANCE_JSON}/minecraftinstance.json"
|
||
|
elif ! [ -f "${CURSE_INSTANCE_JSON}" ]; then
|
||
|
log "ERROR: CURSE_INSTANCE_JSON file does not exist: ${CURSE_INSTANCE_JSON}"
|
||
|
exit 2
|
||
|
fi
|
||
|
|
||
|
log "Resolved CURSE_INSTANCE_JSON as ${CURSE_INSTANCE_JSON}"
|
||
|
|
||
|
# Continue to Final Setup
|
||
|
exec /start-finalSetup01World "$@"
|