From cd3f593a7ab62ef414214c94426e980e24d5b5d8 Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Sun, 28 Apr 2024 03:11:42 +0100 Subject: [PATCH] refactor: remove latest from get_alpine() as releases_alpine() is dynamic --- quickget | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/quickget b/quickget index dbc8144..8809a65 100755 --- a/quickget +++ b/quickget @@ -1546,12 +1546,8 @@ function get_alma() { function get_alpine() { local HASH="" local ISO="" - local URL="" + local URL="https://dl-cdn.alpinelinux.org/alpine/${RELEASE}/releases/x86_64" local VERSION="" - case ${RELEASE} in - latest) URL="https://dl-cdn.alpinelinux.org/alpine/latest-stable/releases/x86_64";; - *) URL="https://dl-cdn.alpinelinux.org/alpine/v${RELEASE}/releases/x86_64";; - esac VERSION=$(web_pipe "${URL}/latest-releases.yaml" | awk '/"Xen"/{found=0} {if(found) print} /"Virtual"/{found=1}' | grep 'version:' | awk '{print $2}') ISO="alpine-virt-${VERSION}-x86_64.iso" HASH=$(web_pipe "${URL}/latest-releases.yaml" | awk '/"Xen"/{found=0} {if(found) print} /"Virtual"/{found=1}' | grep 'sha256:' | awk '{print $2}')