This commit is contained in:
goldsquid
2025-11-15 11:24:52 +07:00
parent 752be20f18
commit 0b3cf5eb38

View File

@@ -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