fix: exclude v8 from releases_netbsd(); no longer available

This commit is contained in:
Martin Wimpress 2024-04-28 03:16:15 +01:00 committed by Martin Wimpress
parent 89111cd8de
commit 7ff266466c
1 changed files with 2 additions and 2 deletions

View File

@ -898,8 +898,8 @@ function releases_netboot() {
}
function releases_netbsd() {
local NBSD_RELEASES=$(web_pipe "http://cdn.netbsd.org/pub/NetBSD/iso/" | grep -o -E '"[[:digit:]]+\.[[:digit:]]+/"' | tr -d '"/' | sort -nr | tr '\n' ' ')
echo "${NBSD_RELEASES}"
# V8 is EOL so filter it out
echo $(web_pipe "http://cdn.netbsd.org/pub/NetBSD/iso/" | grep -o -E '"[[:digit:]]+\.[[:digit:]]+/"' | tr -d '"/' | grep -v ^8 | sort -nr)
}
function releases_nitrux() {