From 404661abec2b83e2d18ab44572a5780e72d9af6d Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Fri, 19 Apr 2024 22:05:45 +0100 Subject: [PATCH] refactor: update lmde to use web_pipe() --- quickget | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickget b/quickget index fbffd55..48a4e4f 100755 --- a/quickget +++ b/quickget @@ -2318,7 +2318,7 @@ function get_lmde() { local HASH="" local ISO="lmde-${RELEASE}-${EDITION}-64bit.iso" local URL="https://mirror.bytemark.co.uk/linuxmint/debian" - HASH=$(wget -q -O- "${URL}/sha256sum.txt" | grep "${ISO}" | cut_1) + HASH=$(web_pipe "${URL}/sha256sum.txt" | grep "${ISO}" | cut_1) echo "${URL}/${ISO} ${HASH}" }