Skip to content

Commit

Permalink
fix: blendOS now has a single current iso
Browse files Browse the repository at this point in the history
Selected a reasonable mirror as the old choice is unreliable
  • Loading branch information
philclifford committed Oct 16, 2024
1 parent 790484c commit 31c0334
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions quickget
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down Expand Up @@ -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}"
}

Expand Down

0 comments on commit 31c0334

Please sign in to comment.