From 6ae74a397c4769f78a49110adb7d353e073a5d74 Mon Sep 17 00:00:00 2001 From: zen0bit Date: Sun, 21 Apr 2024 08:13:59 +0200 Subject: [PATCH] chore: Move get_biglinux function --- quickget | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/quickget b/quickget index 560be43..2fcc823 100755 --- a/quickget +++ b/quickget @@ -1821,14 +1821,6 @@ function get_athenaos() { 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() { local HASH="" local URL="https://mirrors.o2switch.fr/batocera/x86_64/stable/${RELEASE}" @@ -1845,6 +1837,14 @@ function get_bazzite() { 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() { local HASH="" local URL=""