mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2024-06-07 19:40:43 +00:00
12 lines
251 B
Plaintext
12 lines
251 B
Plaintext
|
#!/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 "$@"
|