2021-02-07 17:22:08 +00:00
|
|
|
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
IFS=$'\n\t'
|
|
|
|
|
|
|
|
. ${SCRIPTS:-/}start-utils
|
|
|
|
isDebugging && set -x
|
|
|
|
|
|
|
|
: ${VANILLA_VERSION:?}
|
|
|
|
: ${PURPUR_BUILD:=LATEST}
|
|
|
|
: ${FORCE_REDOWNLOAD:=false}
|
|
|
|
|
|
|
|
if [[ ${PURPUR_BUILD} == LATEST ]]; then
|
2021-12-06 13:25:01 +00:00
|
|
|
PURPUR_BUILD=$(curl -fsSL "https://api.purpurmc.org/v2/purpur/${VANILLA_VERSION}" |
|
2021-02-07 17:22:08 +00:00
|
|
|
jq -r '.builds.latest' || echo "")
|
|
|
|
if [[ -z ${PURPUR_BUILD} ]]; then
|
|
|
|
log "ERROR: Failed to locate a Purpur build for ${VANILLA_VERSION}."
|
|
|
|
log " Please check if a download is available at https://purpur.pl3x.net/downloads/"
|
|
|
|
exit 3
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
export SERVER="purpur-${VANILLA_VERSION}-${PURPUR_BUILD}.jar"
|
|
|
|
|
|
|
|
if [ ! -f "$SERVER" ] || isTrue "$FORCE_REDOWNLOAD"; then
|
2021-12-06 13:25:01 +00:00
|
|
|
downloadUrl="https://api.purpurmc.org/v2/purpur/${VANILLA_VERSION}/${PURPUR_BUILD}/download"
|
2021-02-07 17:22:08 +00:00
|
|
|
log "Downloading Purpur from $downloadUrl ..."
|
|
|
|
if ! curl -fsSL -o "$SERVER" "$downloadUrl"; then
|
|
|
|
log "ERROR: failed to download from $downloadUrl (status=$?)"
|
|
|
|
exit 3
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Normalize on Spigot for later operations
|
|
|
|
export TYPE=SPIGOT
|
|
|
|
export SKIP_LOG4J_CONFIG=true
|
|
|
|
|
2021-04-13 01:21:53 +00:00
|
|
|
exec ${SCRIPTS:-/}start-spiget "$@"
|