Skip to content

Commit 737178e

Browse files
committed
Ignore docs directory when freezing as well.
conf.py for Sphinx will be moved here.
1 parent d556ce2 commit 737178e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/preprocess_frozen_modules.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def copy_and_process(in_dir, out_dir):
3333
for root, subdirs, files in os.walk(in_dir):
3434

3535
# Skip library examples directories.
36-
if Path(root).name == 'examples':
36+
if Path(root).name in ['examples', 'docs']:
3737
continue
3838

3939
for file in files:

0 commit comments

Comments
 (0)