From 981e62d53d72784429a53ddf85f7b5984b4bcc16 Mon Sep 17 00:00:00 2001 From: juronja <101410098+juronja@users.noreply.github.com> Date: Fri, 27 Feb 2026 09:44:57 +0100 Subject: [PATCH] TrueNAS VM: filter out new nightlies with MASTER (#12355) * filter out new nightlies with MASTER * reversed the quotes --- vm/truenas-vm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vm/truenas-vm.sh b/vm/truenas-vm.sh index 1437e6e8d..40e0a7e47 100644 --- a/vm/truenas-vm.sh +++ b/vm/truenas-vm.sh @@ -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" )