docker-minecraft-server/start-deployPaper

32 lines
1 KiB
Text
Raw Normal View History

2017-11-01 05:42:44 +00:00
#!/bin/bash
. ${SCRIPTS:-/}start-utils
set -o pipefail
2020-03-06 15:52:17 +00:00
: ${PAPERBUILD:=latest}
export SERVER=paper_server-${VANILLA_VERSION}-${PAPERBUILD}.jar
if [ -f "$SERVER" ] && ! isTrue "$FORCE_REDOWNLOAD"; then
zarg="-z '$SERVER'"
2017-11-01 05:42:44 +00:00
fi
downloadUrl=${PAPER_DOWNLOAD_URL:-https://papermc.io/api/v1/paper/${VANILLA_VERSION}/${PAPERBUILD}/download}
log "Downloading Paper $VANILLA_VERSION (build $PAPERBUILD) from $downloadUrl ..."
if ! curl -fsSL -o "$SERVER" $zarg "$downloadUrl" 2> /dev/null; then
if versions=$(curl -fsSL https://papermc.io/api/v1/paper 2> /dev/null | jq -r '.versions | join(", ")'); then
log "ERROR: ${VANILLA_VERSION} is not (yet) published by PaperMC"
log " Set VERSION to one of the following: "
log " ${versions}"
else
log "ERROR: failed to contact PaperMC at https://papermc.io/api/v1/paper"
fi
exit 3
fi
# Normalize on Spigot for downstream operations
2017-11-01 05:42:44 +00:00
export TYPE=SPIGOT
export SKIP_LOG4J_CONFIG=true
2017-11-01 05:42:44 +00:00
# Continue to Final Setup
exec ${SCRIPTS:-/}start-finalSetupWorld $@