repair NetBSD releases

grep: warning: stray \ before "
This commit is contained in:
zenobit 2023-10-01 18:34:29 +02:00 committed by Martin Wimpress
parent 50f63f94d8
commit b4d7c90b89

View file

@ -499,7 +499,7 @@ function releases_netboot() {
} }
function releases_netbsd() { function releases_netbsd() {
local NBSD_RELEASES=$(curl -sL http://cdn.netbsd.org/pub/NetBSD/iso/ | grep -o -E '\"[[:digit:]]+\.[[:digit:]]+/\"' |tr -d '"/' |sort -nr ) local NBSD_RELEASES=$(curl -sL http://cdn.netbsd.org/pub/NetBSD/iso/ | grep -o -E '"[[:digit:]]+\.[[:digit:]]+/"' |tr -d '"/' |sort -nr )
echo ${NBSD_RELEASES} echo ${NBSD_RELEASES}
} }