From 7dfc5ce47173c3ab6bbc5b0076e1d8a05295f57f Mon Sep 17 00:00:00 2001 From: Michael Parker Date: Mon, 29 Mar 2021 19:43:40 -0400 Subject: [PATCH] update file unpacker script update file unpacker script to work with the github release grabber and download validation script --- scripts/file_unpacker.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/scripts/file_unpacker.sh b/scripts/file_unpacker.sh index c5d818f5..0389f2e6 100644 --- a/scripts/file_unpacker.sh +++ b/scripts/file_unpacker.sh @@ -3,11 +3,16 @@ ## The value for ${DOWNLOAD_LINK##*/} is derived from DOWNLOAD_LINK ## if the download link is https://launcher.mojang.com/v1/objects/3dc3d84a581f14691199cf6831b71ed1296a9fdf/server.jar then the ##*/ is server.jar +apt update +apt install -y curl file unzip + +curl -sSL ${DOWNLOAD_LINK} + FILETYPE=$(file -F ',' ${DOWNLOAD_LINK##*/} | cut -d',' -f2 | cut -d' ' -f2) if [ "$FILETYPE" == "gzip" ]; then tar xzvf ${DOWNLOAD_LINK##*/} elif [ "$FILETYPE" == "Zip" ]; then - unzip ${DOWNLOAD_LINK##*/} + unzip -o ${DOWNLOAD_LINK##*/} elif [ "$FILETYPE" == "XZ" ]; then tar xvf ${DOWNLOAD_LINK##*/} else