Skip to content

Commit ad63150

Browse files
committed
Don't freeze utils directories
1 parent 044dcb4 commit ad63150

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

tools/preprocess_frozen_modules.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,12 @@ def copy_and_process(in_dir, out_dir):
4949

5050
# Skip library examples directory and subfolders.
5151
relative_path_parts = Path(root).relative_to(in_dir).parts
52-
if relative_path_parts and relative_path_parts[0] in ["examples", "docs", "tests"]:
52+
if relative_path_parts and relative_path_parts[0] in [
53+
"examples",
54+
"docs",
55+
"tests",
56+
"utils",
57+
]:
5358
del subdirs[:]
5459
continue
5560

0 commit comments

Comments
 (0)