From 5da176d58a0d905442635ea734d95599a8be789a Mon Sep 17 00:00:00 2001 From: squidbear <379651+czarly@users.noreply.github.com> Date: Mon, 31 Mar 2025 10:38:43 +0200 Subject: [PATCH] fix --- thundercore/scripts/download.thunder.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thundercore/scripts/download.thunder.sh b/thundercore/scripts/download.thunder.sh index 1dd23002..e463b0ce 100755 --- a/thundercore/scripts/download.thunder.sh +++ b/thundercore/scripts/download.thunder.sh @@ -15,7 +15,7 @@ apk add --no-cache wget tar gzip # Create and prepare directories rm -rf /datadir/* -url=$(wget -q -O - $SNAPSHOT_URL) +url=$(wget -q -O - $SNAPSHOT_URL | cut -d , -f 1) echo "downloading $url" wget --show-progress -c $url -O - | tar -C /datadir -zx