From 86ed09928384f71a1be07d651bdbebd5759847df Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Fri, 19 Apr 2024 22:05:03 +0100 Subject: [PATCH] refactor: update linuxlite to use web_pipe() --- quickget | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickget b/quickget index 33eaa4c..51ac8c2 100755 --- a/quickget +++ b/quickget @@ -2300,7 +2300,7 @@ function get_linuxlite() { local HASH="" local ISO="linux-lite-${RELEASE}-64bit.iso" local URL="https://sourceforge.net/projects/linux-lite/files/${RELEASE}" - HASH=$(wget -q -O- "${URL}/${ISO}.sha256" | cut_1) + HASH=$(web_pipe "${URL}/${ISO}.sha256" | cut_1) echo "${URL}/${ISO} ${HASH}" }