mirror of
https://github.com/itzg/docker-minecraft-server
synced 2024-11-10 06:14:14 +00:00
29 lines
732 B
Bash
Executable file
29 lines
732 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# shellcheck source=start-utils
|
|
. "${SCRIPTS:-/}start-utils"
|
|
isDebugging && set -x
|
|
|
|
: "${MAGMA_VERSION:=}"
|
|
|
|
resolveVersion
|
|
|
|
if ! downloadUrl=$(get --json-path '$.link' "https://api.magmafoundation.org/api/v2/${VERSION}/latest/${MAGMA_VERSION}"); then
|
|
log "ERROR failed to locate latest Magma download for ${VERSION}. Is that version supported?"
|
|
exit 1
|
|
fi
|
|
|
|
if [[ $downloadUrl == null ]]; then
|
|
log "ERROR Magma does not seem to be available for $VERSION"
|
|
exit 1
|
|
fi
|
|
|
|
if ! SERVER=$(get --output-filename --skip-up-to-date --output /data "$downloadUrl"); then
|
|
log "ERROR: failed to download Magma server jar from $downloadUrl"
|
|
exit 1
|
|
fi
|
|
|
|
export SERVER
|
|
export FAMILY=HYBRID
|
|
|
|
exec "${SCRIPTS:-/}start-spiget" "$@"
|