From 074796db4c2bb344f59d98107a63f7c5eb9a46d7 Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Fri, 19 Apr 2024 22:09:58 +0100 Subject: [PATCH] refactor: update netboot to use web_pipe() --- quickget | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickget b/quickget index 88599c4..f99d7cf 100755 --- a/quickget +++ b/quickget @@ -2506,7 +2506,7 @@ function get_netboot() { local ISO="netboot.xyz.iso" local HASH="" local URL="https://boot.netboot.xyz/ipxe" - HASH=$(wget -q -O- "${URL}/netboot.xyz-sha256-checksums.txt" | grep "${ISO}" | cut_1) + HASH=$(web_pipe "${URL}/netboot.xyz-sha256-checksums.txt" | grep "${ISO}" | cut_1) echo "${URL}/${ISO} ${HASH}" }