docker-minecraft-server/start-deployPaper

24 lines
717 B
Plaintext
Raw Normal View History

2017-11-01 05:42:44 +00:00
#!/bin/bash
. ${SCRIPTS:-/}start-utils
2020-03-06 15:52:17 +00:00
: ${PAPERBUILD:=latest}
export SERVER=paper_server-${VANILLA_VERSION}-${PAPERBUILD}.jar
2019-09-15 19:09:27 +00:00
if [ ! -f "$SERVER" ] || [ -n "$FORCE_REDOWNLOAD" ]; then
downloadUrl=${PAPER_DOWNLOAD_URL:-https://papermc.io/api/v1/paper/${VANILLA_VERSION}/${PAPERBUILD}/download}
log "Downloading Paper $VANILLA_VERSION (build $PAPERBUILD) from $downloadUrl ..."
2019-09-15 19:09:27 +00:00
curl -fsSL -o "$SERVER" "$downloadUrl"
if [ ! -f "$SERVER" ]; then
2020-03-06 15:52:17 +00:00
log "ERROR: failed to download from $downloadUrl (status=$?)"
2017-11-01 05:42:44 +00:00
exit 3
fi
fi
# Normalize on Spigot for operations below
export TYPE=SPIGOT
export SKIP_LOG4J_CONFIG=true
2017-11-01 05:42:44 +00:00
# Continue to Final Setup
exec ${SCRIPTS:-/}start-finalSetupWorld $@