From 0f8d56d2c81261ba0ab2a2464a85b70f1af5f02e Mon Sep 17 00:00:00 2001 From: Phil Clifford Date: Thu, 17 Oct 2024 20:54:57 +0100 Subject: [PATCH] fix: blendOS now has a single current iso (#1481) * fix: blendOS now has a single current iso Select a reasonable mirror as the old choice is unreliable Co-authored-by: Liam <33645555+lj3954@users.noreply.github.com> --- quickget | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/quickget b/quickget index ea59082..ab9cd3c 100755 --- a/quickget +++ b/quickget @@ -583,13 +583,8 @@ function editions_biglinux() { } function releases_blendos() { - #shellcheck disable=SC2046,SC2005 - echo $(web_pipe "https://mirror.ico277.xyz/blendos/gnome/" | grep "\.iso" | cut -c81- | cut -d'"' -f2 | cut -d'-' -f2) -} - -function editions_blendos() { - #shellcheck disable=SC2046,SC2005 - echo $(web_pipe "https://mirror.ico277.xyz/blendos/" | grep "\[DIR\]" | cut -c81-90 | cut -d'/' -f1 | grep -v testing | sort -u) + # there is now just a single latest iso + echo latest } function releases_bodhi() { @@ -1616,8 +1611,8 @@ function get_biglinux() { function get_blendos() { local HASH="" - local ISO="blendos-${RELEASE}-stable-${EDITION}.iso" - local URL="https://mirror.ico277.xyz/blendos/${EDITION}" + local ISO="blendOS.iso" + local URL="https://kc1.mirrors.199693.xyz/blend/isos/testing" echo "${URL}/${ISO} ${HASH}" }