chore: Move get_vanillaos function

This commit is contained in:
zen0bit 2024-04-21 08:02:06 +02:00 committed by Martin Wimpress
parent 7cd3e4e669
commit 87c70e10ee

View File

@ -1850,13 +1850,6 @@ function get_blendos() {
echo "${URL}/${ISO} ${HASH}"
}
function get_vanillaos() {
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_batocera() {
local HASH=""
local URL="https://mirrors.o2switch.fr/batocera/x86_64/stable/${RELEASE}"
@ -2852,6 +2845,13 @@ function get_ubuntu() {
fi
}
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}"
}
function get_void() {
local DATE=""
local EDITION="${1:-}"