8000 Merge pull request #5791 from prplz/dont-freeze-utils · domdfcoding/circuitpython@cd7e879 · GitHub
[go: up one dir, main page]

Skip to content

Commit cd7e879

Browse files
authored
Merge pull request adafruit#5791 from prplz/dont-freeze-utils
Don't freeze utils directories
2 parents 8aafc73 + ad63150 commit cd7e879

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)
0