chore: only reference the current slint release; their servers are slow

This commit is contained in:
Martin Wimpress 2024-06-24 12:25:04 +01:00 committed by Martin Wimpress
parent ac42e6b492
commit c760932d48
1 changed files with 5 additions and 6 deletions

View File

@ -1032,9 +1032,7 @@ function editions_slax() {
} }
function releases_slint() { function releases_slint() {
# 15.0.1 returns a 404 so is excluded echo "15.0-5"
#shellcheck disable=SC2046,SC2005
echo $(web_pipe "https://slackware.uk/slint/x86_64/" | grep "slint-" | cut -d'>' -f2 | cut -d'-' -f2 | tr -d "/\"" | grep -v "15.0.1" | sort -ru)
} }
function releases_slitaz() { function releases_slitaz() {
@ -2442,9 +2440,10 @@ function get_slax() {
function get_slint() { function get_slint() {
local HASH="" local HASH=""
local ISO="" local MAJ_VER=""
local URL="https://slackware.uk/slint/x86_64/slint-${RELEASE}/iso" local ISO="slint64-${RELEASE}.iso"
ISO=$(web_pipe "${URL}" | grep "slint64-" | cut -d'>' -f2 | cut -d'"' -f2 | head -n1) MAJ_VER="$(echo "${RELEASE}" | cut -d'-' -f 1)"
local URL="https://slackware.uk/slint/x86_64/slint-${MAJ_VER}/iso"
HASH=$(web_pipe "${URL}/${ISO}.sha256" | cut -d' ' -f4) HASH=$(web_pipe "${URL}/${ISO}.sha256" | cut -d' ' -f4)
echo "${URL}/${ISO}" "${HASH}" echo "${URL}/${ISO}" "${HASH}"
} }