From e9fe08f36a2f0c801700b2e361c0e23f76727c84 Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Fri, 19 Apr 2024 14:24:18 +0100 Subject: [PATCH] refactor: update antix to use web_pipe() --- quickget | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickget b/quickget index cf890f0..76e408a 100755 --- a/quickget +++ b/quickget @@ -1809,7 +1809,7 @@ function get_antix() { URL="${URL_runit}" ;; esac - HASH=$(wget -q -O- ${URL}/README.txt | grep "${ISO}" | cut -d' ' -f1 | head -1) + HASH=$(web_pipe "${URL}/README.txt" | grep "${ISO}" | cut -d' ' -f1 | head -1) echo "${URL}/${ISO} ${HASH}" }