mirror of
https://github.com/itzg/docker-minecraft-server
synced 2024-11-10 14:24:28 +00:00
e9b1332119
For #497
18 lines
579 B
Bash
Executable file
18 lines
579 B
Bash
Executable file
#!/bin/bash
|
|
|
|
. /start-utils
|
|
|
|
export SERVER="/data/magma-server-${VANILLA_VERSION}.jar"
|
|
|
|
# Always download since new updates of each base version are published frequently
|
|
if ! curl -o /data/magma-server-${VANILLA_VERSION}.jar -fsSL \
|
|
https://api.magmafoundation.org/api/resources/Magma/${VANILLA_VERSION}/stable/latest/download; then
|
|
log "ERROR unable to download version ${VANILLA_VERSION} of Magma"
|
|
log " Check https://magmafoundation.org/ for available versions"
|
|
exit 1
|
|
fi
|
|
|
|
export SKIP_LOG4J_CONFIG=true
|
|
|
|
# Continue to Final Setup
|
|
exec /start-finalSetup01World $@
|