From cf3fe312b7efcb5b1d5437abca97fe39fc73d3b7 Mon Sep 17 00:00:00 2001 From: xp9477 <947760133@qq.com> Date: Sun, 22 Mar 2026 12:37:45 +0800 Subject: [PATCH] fix: exclude dependency files from scheduled tasks when pulling subscriptions --- shell/update.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/shell/update.sh b/shell/update.sh index 613ebe69..bffe0bea 100755 --- a/shell/update.sh +++ b/shell/update.sh @@ -397,6 +397,10 @@ gen_list_repo() { if [[ $blackword ]]; then files=$(echo "$files" | egrep -v "$blackword") fi +# Filter out dependency files from the scripts list +if [[ $dependence ]]; then + files=$(echo "$files" | egrep -v "$dependence") +fi cp -f $file_notify_js "${dir_scripts}/${uniq_path}" cp -f $file_notify_py "${dir_scripts}/${uniq_path}"