TrueNAS VM: filter out new nightlies with MASTER (#12355)

* filter out new nightlies with MASTER

* reversed the quotes
This commit is contained in:
juronja
2026-02-27 09:44:57 +01:00
committed by GitHub
parent 03028a9a9b
commit 981e62d53d

View File

@@ -88,7 +88,7 @@ function truenas_iso_lookup() {
curl -sL "$BASE_URL" |
grep -oE 'href="[^"]+\.iso"' |
sed 's/href="//; s/"$//' |
grep -vE '(nightly|ALPHA)' |
grep -vE '(MASTER|ALPHA)' |
grep -E "$year_pattern"
)