Update quickget releases_rockylinux() grep

Rocky linux version page (https://dl.rockylinux.org/vault/rocky/) has changed, and no releases were listed as a result. This updates the grep to extract the correct version from the new page.
This commit is contained in:
Alvin Meltsov 2025-09-19 16:43:53 +02:00 committed by GitHub
parent 78b938facf
commit d69f1b5e16
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -991,7 +991,7 @@ function releases_rebornos() {
function releases_rockylinux() {
#shellcheck disable=SC2046,SC2005
echo $(web_pipe "http://dl.rockylinux.org/vault/rocky/" | grep "^<a href" | grep -v full | grep -v RC | grep -v ISO | cut -d'"' -f2 | tr -d / | sort -ru)
echo $(web_pipe "http://dl.rockylinux.org/vault/rocky/" | grep "<a href=\"[0-9]\." | grep -v full | grep -v RC | grep -v ISO | cut -d'"' -f4 | tr -d / | sort -ru)
}
function editions_rockylinux() {