From 01aa7204191627114c98129edcee71d3c17594e2 Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Fri, 19 Apr 2024 22:05:26 +0100 Subject: [PATCH] refactor: update linuxmint to use web_pipe() --- quickget | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickget b/quickget index 51ac8c2..fbffd55 100755 --- a/quickget +++ b/quickget @@ -2309,7 +2309,7 @@ function get_linuxmint() { local HASH="" local ISO="linuxmint-${RELEASE}-${EDITION}-64bit.iso" local URL="https://mirror.bytemark.co.uk/linuxmint/stable/${RELEASE}" - 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}" }