2017-11-01 05:42:44 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
export SERVER=paper_server.jar
|
2019-06-12 18:33:10 +00:00
|
|
|
if [ ! -f $SERVER ] || [ -n "$FORCE_REDOWNLOAD" ]; then
|
2019-05-26 16:16:00 +00:00
|
|
|
downloadUrl=${PAPER_DOWNLOAD_URL:-https://papermc.io/api/v1/paper/${VANILLA_VERSION}/latest/download}
|
|
|
|
echo "Downloading Paper $VANILLA_VERSION from $downloadUrl ..."
|
2017-11-01 05:42:44 +00:00
|
|
|
curl -fsSL -o $SERVER "$downloadUrl"
|
|
|
|
if [ ! -f $SERVER ]; then
|
|
|
|
echo "ERROR: failed to download from $downloadUrl (status=$?)"
|
|
|
|
exit 3
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Normalize on Spigot for operations below
|
|
|
|
export TYPE=SPIGOT
|
|
|
|
|
|
|
|
# Continue to Final Setup
|
|
|
|
exec /start-finalSetup01World $@
|