mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2024-06-07 19:40:43 +00:00
28 lines
695 B
Bash
Executable File
28 lines
695 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# shellcheck source=start-utils
|
|
. "${SCRIPTS:-/}start-utils"
|
|
isDebugging && set -x
|
|
|
|
resolveVersion
|
|
|
|
if ! downloadUrl=$(get --json-path '$.link' "https://api.magmafoundation.org/api/v2/${VERSION}/latest"); 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-setupWorld" "$@"
|