From 3b01fb26ddf6a2f5aa6e4fcbd326a2c559bf3638 Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Fri, 19 Apr 2024 22:04:35 +0100 Subject: [PATCH] refactor: update kdeneon to use web_pipe() --- quickget | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/quickget b/quickget index d83d168..33eaa4c 100755 --- a/quickget +++ b/quickget @@ -2284,8 +2284,8 @@ function get_kdeneon() { local HASH="" local ISO="" local URL="https://files.kde.org/neon/images/${RELEASE}/current" - ISO=$(wget -q -O- "${URL}/neon-${RELEASE}-current.sha256sum" | cut -d' ' -f3-) - HASH=$(wget -q -O- "${URL}/neon-${RELEASE}-current.sha256sum" | cut_1) + ISO=$(web_pipe "${URL}/neon-${RELEASE}-current.sha256sum" | cut -d' ' -f3-) + HASH=$(web_pipe "${URL}/neon-${RELEASE}-current.sha256sum" | cut_1) echo "${URL}/${ISO} ${HASH}" }