From 9d4171b0d6a93c309f29daf3e2c3d21cc15e7483 Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Sat, 24 Jan 2026 01:26:16 +0000 Subject: [PATCH] fix(quickget): add hash verification for KolibriOS --- quickget | 1 + 1 file changed, 1 insertion(+) diff --git a/quickget b/quickget index 07f9e2e..3734d1a 100755 --- a/quickget +++ b/quickget @@ -1990,6 +1990,7 @@ function get_kolibrios() { local HASH="" local ISO="latest-iso.7z" local URL="http://builds.kolibrios.org/${EDITION}" + HASH=$(web_pipe "${URL}/sha256sums.txt" | grep "${ISO}" | cut -d' ' -f1) echo "${URL}/${ISO} ${HASH}" }