mirror of
https://github.com/itzg/docker-minecraft-server
synced 2024-11-10 06:14:14 +00:00
11 lines
253 B
Bash
11 lines
253 B
Bash
#!/bin/bash
|
|
|
|
if [[ $FOLIA_DOWNLOAD_URL ]]; then
|
|
export PAPER_DOWNLOAD_URL="$FOLIA_DOWNLOAD_URL"
|
|
fi
|
|
|
|
if [[ $FOLIABUILD ]]; then
|
|
export PAPERBUILD="$FOLIABUILD"
|
|
fi
|
|
|
|
PAPER_PROJECT="folia" PAPER_NAME="FoliaMC" exec "${SCRIPTS:-/}start-deployPaper" "$@"
|