From 47eec2fe158de6198c9022a2e07e849b2dce0dee Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Sun, 21 Apr 2024 14:00:10 +0100 Subject: [PATCH] chore: preserve recent changes to get_rebornos() --- quickget | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/quickget b/quickget index 036d61c..563bd27 100755 --- a/quickget +++ b/quickget @@ -2404,10 +2404,8 @@ function get_reactos() { } function get_rebornos() { - local ISO="" - local HASH="" - ISO=$(wget -q -O- "https://meta.cdn.soulharsh007.dev/RebornOS-ISO?format=json" | jq -r ".url") - HASH=$(wget -q -O- "https://meta.cdn.soulharsh007.dev/RebornOS-ISO?format=json" | jq -r ".md5") + local ISO=$(web_pipe "https://meta.cdn.soulharsh007.dev/RebornOS-ISO?format=json" | jq -r ".url") + local HASH=$(web_pipe "https://meta.cdn.soulharsh007.dev/RebornOS-ISO?format=json" | jq -r ".md5") echo "${ISO} ${HASH}" }