From 1a25318d8998ada79c24b8cf61e7b45c78b31fe8 Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Fri, 19 Apr 2024 14:17:39 +0100 Subject: [PATCH] refactor: update easyos to use web_pipe() --- quickget | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickget b/quickget index 1ac30ae..fcae214 100755 --- a/quickget +++ b/quickget @@ -2080,7 +2080,7 @@ function get_easyos() { YEAR="2024";; esac URL="https://distro.ibiblio.org/easyos/amd64/releases/kirkstone/${YEAR}/${RELEASE}" - HASH=$(wget -q -O- "${URL}/md5.sum.txt" | cut -d' ' -f1) + HASH=$(web_pipe "${URL}/md5.sum.txt" | cut_1) echo "${URL}/${ISO} ${HASH}" }