From 3652194d24bf82e88ef7f253e0bf64bcc9fb401e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20B=C3=A9dard-Couture?= Date: Mon, 21 Jul 2025 16:37:54 -0400 Subject: [PATCH] Fix tag check --- tools/pve/update-apps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/pve/update-apps.sh b/tools/pve/update-apps.sh index 73ee0474..c2ff6c8c 100644 --- a/tools/pve/update-apps.sh +++ b/tools/pve/update-apps.sh @@ -84,7 +84,7 @@ while read -r container; do container_name=$(echo $container | awk '{print $2}') container_status=$(echo $container | awk '{print $3}') formatted_line=$(printf "$FORMAT" "$container_name" "$container_status") - if pct config $container | grep -E "^tags:.*(${TAGS}).*"; then + if pct config "$container_id" | grep -qE "^tags:.*(${TAGS}).*"; then menu_items+=("$container_id" "$formatted_line" "OFF") fi done <<< "$containers"