From 640436b9b919bb3e227583ee4d655e983d8385fa Mon Sep 17 00:00:00 2001 From: rtm516 Date: Sat, 16 Dec 2023 16:03:58 +0000 Subject: [PATCH] Follow latest download redirect --- pterodactyl-geyser/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pterodactyl-geyser/entrypoint.sh b/pterodactyl-geyser/entrypoint.sh index 28a8b75..0a8ef0a 100644 --- a/pterodactyl-geyser/entrypoint.sh +++ b/pterodactyl-geyser/entrypoint.sh @@ -17,7 +17,7 @@ if [ "${AUTO_UPDATE}" == "1" ]; then if [ "$LATEST_HASH" != "$CURRENT_HASH" ]; then echo "Update available!" echo "Updating from '$CURRENT_HASH' -> '$LATEST_HASH'" - curl -s -o ${SERVER_JARFILE} https://download.geysermc.org/v2/projects/geyser/versions/latest/builds/latest/downloads/standalone + curl -L -s -o ${SERVER_JARFILE} https://download.geysermc.org/v2/projects/geyser/versions/latest/builds/latest/downloads/standalone echo "$LATEST_HASH" > ".currenthash" echo "Updated!"