fix(freebsd): filter out 14.1; it is not released yet. close #1231
This commit is contained in:
parent
143e3574fb
commit
7bfeb7721e
2
quickget
2
quickget
|
@ -774,7 +774,7 @@ function editions_fedora() {
|
|||
|
||||
function releases_freebsd() {
|
||||
#shellcheck disable=SC2046,SC2005
|
||||
echo $(web_pipe "https://download.freebsd.org/ftp/releases/amd64/amd64/ISO-IMAGES/" |grep -e 'class="link"' |grep -v '\.\.'|cut -d\" -f4|tr -d '/' | sort -r)
|
||||
echo $(web_pipe "https://download.freebsd.org/ftp/releases/amd64/amd64/ISO-IMAGES/" | grep -e 'class="link"' | grep -v '\.\.' | cut -d\" -f 4 | grep -v "14.1" | tr -d '/' | sort -r)
|
||||
}
|
||||
|
||||
function editions_freebsd() {
|
||||
|
|
Loading…
Reference in New Issue