From fa07aca515a6b3a8d380cc5f313cc926fce765c7 Mon Sep 17 00:00:00 2001 From: zenobit Date: Sun, 17 Sep 2023 01:05:05 +0200 Subject: [PATCH] gentoo: fix https://github.com/quickemu-project/quickemu/pull/765 --- quickget | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickget b/quickget index 4623f5a..5a58b79 100755 --- a/quickget +++ b/quickget @@ -1613,7 +1613,7 @@ function get_gentoo() { local URL="https://mirror.bytemark.co.uk/gentoo/releases/amd64/autobuilds/" ISO=$(wget -q -O- "${URL}/${RELEASE}-iso.txt" | grep install | cut -d' ' -f1) - HASH=$( wget -q -O- "${URL}/${ISO}.DIGESTS" | grep iso | grep -v CONTENTS | cut -d' ' -f1) + HASH=$( wget -q -O- "${URL}/${ISO}.DIGESTS" | grep -A 1 SHA512 | grep iso | grep -v CONTENTS | cut -d' ' -f1) echo "${URL}/${ISO} ${HASH}" }