From c345ff78dbb9141afe7c971dd75fba76f02f9449 Mon Sep 17 00:00:00 2001 From: goldsquid Date: Wed, 18 Jun 2025 21:01:32 +0700 Subject: [PATCH] special case for viction --- upstreams.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/upstreams.sh b/upstreams.sh index 85378b19..6f9a6f78 100755 --- a/upstreams.sh +++ b/upstreams.sh @@ -47,7 +47,11 @@ for part in "${parts[@]}"; do path_include=true for word in "${path_blacklist[@]}"; do if echo "$path" | grep -qE "$word"; then - path_include=false + if echo "$path" | grep -q "viction"; then + path_include=true + else + path_include=false + fi fi done