Skip to content

Commit

Permalink
Merge pull request #5791 from prplz/dont-freeze-utils
Browse files Browse the repository at this point in the history
Don't freeze utils directories
  • Loading branch information
jepler authored Dec 29, 2021
2 parents 8aafc73 + ad63150 commit cd7e879
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tools/preprocess_frozen_modules.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,12 @@ def copy_and_process(in_dir, out_dir):

# Skip library examples directory and subfolders.
relative_path_parts = Path(root).relative_to(in_dir).parts
if relative_path_parts and relative_path_parts[0] in ["examples", "docs", "tests"]:
if relative_path_parts and relative_path_parts[0] in [
"examples",
"docs",
"tests",
"utils",
]:
del subdirs[:]
continue

Expand Down

0 comments on commit cd7e879

Please sign in to comment.