From 0b3cf5eb38539eee6415dcd2a41af25573ea99ee Mon Sep 17 00:00:00 2001 From: goldsquid Date: Sat, 15 Nov 2025 11:24:52 +0700 Subject: [PATCH] fix --- sync-status.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/sync-status.sh b/sync-status.sh index 1c26a450..04b659de 100755 --- a/sync-status.sh +++ b/sync-status.sh @@ -22,7 +22,12 @@ for path in $pathlist; do include=true for word in "${blacklist[@]}"; do if echo "$path" | grep -qE "$word"; then - include=false + if echo "$path" | grep -qE "viction"; then + # excemption + include=$include + else + include=false + fi fi done