From 3ff9ea520451f9aea9b3e9e35b46b8619a460f21 Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Fri, 19 Apr 2024 22:23:02 +0100 Subject: [PATCH] refactor: update tinycore to use web_pipe() --- quickget | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickget b/quickget index 51e8047..21bdd95 100755 --- a/quickget +++ b/quickget @@ -2808,7 +2808,7 @@ function get_tinycore() { elif [ "${EDITION}" == "CorePure64" ] || [ "${EDITION}" == "TinyCorePure64" ]; then URL="http://www.tinycorelinux.net/14.x/x86_64/release" fi - HASH=$(wget -q -O- "${URL}/${ISO}.md5.txt" | cut_1) + HASH=$(web_pipe "${URL}/${ISO}.md5.txt" | cut_1) echo "${URL}/${ISO} ${HASH}" }