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:
parent
78b938facf
commit
d69f1b5e16
2
quickget
2
quickget
|
|
@ -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() {
|
||||
|
|
|
|||
Loading…
Reference in New Issue