chore: Move get_biglinux function
This commit is contained in:
parent
7a88eab9af
commit
6ae74a397c
16
quickget
16
quickget
|
@ -1821,14 +1821,6 @@ function get_athenaos() {
|
||||||
echo "${URL}/${ISO} ${HASH}"
|
echo "${URL}/${ISO} ${HASH}"
|
||||||
}
|
}
|
||||||
|
|
||||||
function get_biglinux() {
|
|
||||||
local HASH=""
|
|
||||||
local ISO="biglinux_${RELEASE}_${EDITION}.iso"
|
|
||||||
local URL="https://iso.biglinux.com.br"
|
|
||||||
HASH=$(web_pipe "${URL}/${ISO}.md5" | grep -Eo '[[:alnum:]]{32}')
|
|
||||||
echo "${URL}/${ISO} ${HASH}"
|
|
||||||
}
|
|
||||||
|
|
||||||
function get_batocera() {
|
function get_batocera() {
|
||||||
local HASH=""
|
local HASH=""
|
||||||
local URL="https://mirrors.o2switch.fr/batocera/x86_64/stable/${RELEASE}"
|
local URL="https://mirrors.o2switch.fr/batocera/x86_64/stable/${RELEASE}"
|
||||||
|
@ -1845,6 +1837,14 @@ function get_bazzite() {
|
||||||
echo "${URL}/${ISO} ${HASH}"
|
echo "${URL}/${ISO} ${HASH}"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function get_biglinux() {
|
||||||
|
local HASH=""
|
||||||
|
local ISO="biglinux_${RELEASE}_${EDITION}.iso"
|
||||||
|
local URL="https://iso.biglinux.com.br"
|
||||||
|
HASH=$(web_pipe "${URL}/${ISO}.md5" | grep -Eo '[[:alnum:]]{32}')
|
||||||
|
echo "${URL}/${ISO} ${HASH}"
|
||||||
|
}
|
||||||
|
|
||||||
function get_blendos() {
|
function get_blendos() {
|
||||||
local HASH=""
|
local HASH=""
|
||||||
local URL=""
|
local URL=""
|
||||||
|
|
Loading…
Reference in New Issue