chore: preserve recent changes to get_rebornos()

This commit is contained in:
Martin Wimpress 2024-04-21 14:00:10 +01:00 committed by Martin Wimpress
parent 11453885cc
commit 47eec2fe15
1 changed files with 2 additions and 4 deletions

View File

@ -2404,10 +2404,8 @@ function get_reactos() {
} }
function get_rebornos() { function get_rebornos() {
local ISO="" local ISO=$(web_pipe "https://meta.cdn.soulharsh007.dev/RebornOS-ISO?format=json" | jq -r ".url")
local HASH="" local HASH=$(web_pipe "https://meta.cdn.soulharsh007.dev/RebornOS-ISO?format=json" | jq -r ".md5")
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")
echo "${ISO} ${HASH}" echo "${ISO} ${HASH}"
} }