add option for force re-download of server file

Signed-off-by: Jeff Billimek <jeff@billimek.com>
This commit is contained in:
Jeff Billimek
2019-06-12 14:33:10 -04:00
parent da1a3a47cd
commit 35e2448f8e
6 changed files with 19 additions and 5 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
#!/bin/bash
export SERVER=paper_server.jar
if [ ! -f $SERVER ]; then
if [ ! -f $SERVER ] || [ -n "$FORCE_REDOWNLOAD" ]; then
downloadUrl=${PAPER_DOWNLOAD_URL:-https://papermc.io/api/v1/paper/${VANILLA_VERSION}/latest/download}
echo "Downloading Paper $VANILLA_VERSION from $downloadUrl ..."
curl -fsSL -o $SERVER "$downloadUrl"