Skip to content

Commit

Permalink
Don't freeze utils directories
Browse files Browse the repository at this point in the history
  • Loading branch information
prplz committed Dec 29, 2021
1 parent 044dcb4 commit ad63150
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 ad63150

Please sign in to comment.