From cbd03d78243ef934427cd9164dd08b3000ba9f31 Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Fri, 19 Apr 2024 22:53:04 +0100 Subject: [PATCH] refactor: update vxlinux to use web_pipe() --- quickget | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickget b/quickget index 8f3ba94..e7659c4 100755 --- a/quickget +++ b/quickget @@ -2954,7 +2954,7 @@ function get_vxlinux() { local HASH="" local ISO="vx-${RELEASE}.iso" local URL="https://github.com/VX-Linux/main/releases/download/${RELEASE}" - HASH=$(wget -q -O- "${URL}/vx-${RELEASE}.md5" | cut -d' ' -f1) + HASH=$(web_pipe "${URL}/vx-${RELEASE}.md5" | cut_1) echo "${URL}/${ISO} ${HASH}" }