chore: preserve recent changes to get_vanillaos()

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

View File

@ -2668,10 +2668,10 @@ function get_ubuntu() {
}
function get_vanillaos() {
# TODO: Dynamically get the latest release from GitHub
local HASH=$(web_pipe "https://cdn.vanillaos.org/assets/ISO/22.10-r9/VanillaOS-22.10-all.20231009.sha256.txt" | cut_1)
local URL="https://cdn.vanillaos.org/assets/ISO/22.10-r9/VanillaOS-22.10-all.20231009.iso"
echo "${URL} ${HASH}"
local ISO=$(web_pipe "https://api.github.com/repos/Vanilla-OS/live-iso/releases" | grep 'download_url' | grep "${RELEASE}" | head -1 | cut -d'"' -f4)
local HASH_URL=$(echo "${ISO}" | sed s'|\.iso|\.sha256\.txt|g')
local HASH=$(web_pipe "${HASH_URL}" | cut_1)
echo "${ISO} ${HASH}"
}
function get_void() {