From f35524f8a31cb8a1245423fd076913b9e6b347e6 Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Fri, 19 Apr 2024 22:14:58 +0100 Subject: [PATCH] refactor: update porteus to use web_pipe() --- quickget | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickget b/quickget index f836f4d..9aadba0 100755 --- a/quickget +++ b/quickget @@ -2643,7 +2643,7 @@ function get_porteus() { edition="${EDITION~~}" ISO="Porteus-${edition}-v${RELEASE}-x86_64.iso" URL="https://mirrors.dotsrc.org/porteus/x86_64/Porteus-v${RELEASE}" - HASH=$(wget -q -O- "${URL}/sha256sums.txt" | grep "${ISO}" | cut_1) + HASH=$(web_pipe "${URL}/sha256sums.txt" | grep "${ISO}" | cut_1) echo "${URL}/${ISO} ${HASH}" }