chore: preserve recent changes to get_vanillaos()
This commit is contained in:
parent
47eec2fe15
commit
f907ddac41
8
quickget
8
quickget
|
@ -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() {
|
||||
|
|
Loading…
Reference in New Issue