From 2e9b650711ef05aef9ad824f1cf4fffbc0f06410 Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Fri, 19 Apr 2024 22:15:24 +0100 Subject: [PATCH] refactor: update primtux to use web_pipe() --- quickget | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickget b/quickget index 9aadba0..3b0d334 100755 --- a/quickget +++ b/quickget @@ -2653,7 +2653,7 @@ function get_primtux() { local ISO="" ISO="PrimTux${RELEASE}-amd64-${EDITION}.iso" URL="https://sourceforge.net/projects/primtux/files/Distribution" - HASH=$(wget -q -O- "${URL}/${ISO}.md5" | grep "${ISO}" | cut_1) + HASH=$(web_pipe "${URL}/${ISO}.md5" | grep "${ISO}" | cut_1) echo "${URL}/${ISO} ${HASH}" }