From bbb5518fa6ee0cccc20698b151c98059285dc400 Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Thu, 9 May 2024 18:13:00 +0100 Subject: [PATCH] fix: attempt to fix rebornos failing in ci tests --- quickget | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/quickget b/quickget index f01eec52ad..4e95ade660 100755 --- a/quickget +++ b/quickget @@ -2368,8 +2368,8 @@ function get_reactos() { function get_rebornos() { local HASH="" local ISO="" - ISO=$(web_pipe "https://meta.cdn.soulharsh007.dev/RebornOS-ISO?format=json" | jq -r ".url") - HASH=$(web_pipe "https://meta.cdn.soulharsh007.dev/RebornOS-ISO?format=json" | jq -r ".md5") + ISO="$(web_pipe "https://meta.cdn.soulharsh007.dev/RebornOS-ISO?format=json" | jq -r ".url")" + HASH="$(web_pipe "https://meta.cdn.soulharsh007.dev/RebornOS-ISO?format=json" | jq -r ".md5")" echo "${ISO} ${HASH}" }