From d016a749dccaa68335a135ebaca2606e98edd2ee Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Sat, 24 Jan 2026 01:26:00 +0000 Subject: [PATCH] fix(quickget): add hash verification for Archcraft --- quickget | 3 +++ 1 file changed, 3 insertions(+) diff --git a/quickget b/quickget index 8be279f..07f9e2e 100755 --- a/quickget +++ b/quickget @@ -1600,9 +1600,12 @@ function get_antix() { function get_archcraft() { local HASH="" + local ISO="" local URL="" URL="https://sourceforge.net/projects/archcraft/files/${RELEASE}/download" URL="$(web_redirect "${URL}" | cut -d? -f1)" + ISO="$(basename "${URL}")" + HASH=$(web_pipe "https://sourceforge.net/projects/archcraft/files/v${RELEASE}/${ISO}.sha256sum" | cut -d' ' -f1) echo "${URL} ${HASH}" }