Corrected Garuda sources

Fixes #399
This commit is contained in:
Phil Clifford 2022-02-26 20:52:45 +00:00
parent 1c9d413d38
commit e19b11a958

View File

@ -306,7 +306,6 @@ function editions_garuda() {
mate \ mate \
qtile \ qtile \
sway \ sway \
wayfire \
xfce xfce
} }
@ -919,7 +918,11 @@ function get_garuda() {
cinnamon|mate) URL="http://mirrors.fossho.st/garuda/iso/community/${EDITION}/${RELEASE}";; cinnamon|mate) URL="http://mirrors.fossho.st/garuda/iso/community/${EDITION}/${RELEASE}";;
*) URL="http://mirrors.fossho.st/garuda/iso/garuda/${EDITION}/${RELEASE}";; *) URL="http://mirrors.fossho.st/garuda/iso/garuda/${EDITION}/${RELEASE}";;
esac esac
ISO="garuda-${EDITION}-linux-zen-${RELEASE}.iso" case ${EDITION} in
xfce|kde-barebones) ISO="garuda-${EDITION}-linux-lts-${RELEASE}.iso";;
*) ISO="garuda-${EDITION}-linux-zen-${RELEASE}.iso";;
esac
HASH="$(wget -q -O- "${URL}/${ISO}.sha256" | cut -d' ' -f1)" HASH="$(wget -q -O- "${URL}/${ISO}.sha256" | cut -d' ' -f1)"
echo "${URL}/${ISO} ${HASH}" echo "${URL}/${ISO} ${HASH}"
} }