From f55fcf7baf242a997d5315b269d15c2da4753fb0 Mon Sep 17 00:00:00 2001 From: Jun Date: Tue, 2 Dec 2025 14:35:47 +0800 Subject: [PATCH] fix: copyright updater skips folders like 'modules' --- tools/copyright_updater.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/copyright_updater.py b/tools/copyright_updater.py index 374994657..9637ed93c 100644 --- a/tools/copyright_updater.py +++ b/tools/copyright_updater.py @@ -23,7 +23,7 @@ ALLOWED_FILE_EXTENSIONS = ( "LICENSE", "Dockerfile", "Makefile", ".ts", ".tsx" ) -EXCLUDE_DIR = ("node_modules") +EXCLUDE_DIR = ("node_modules",) # Filter the files by its extension