Skip to content

Commit 7c6adaa

Browse files
authored
Merge pull request micropython#567 from tannewt/ignore_docs_dir
Ignore docs directory when freezing as well.
2 parents d556ce2 + 737178e commit 7c6adaa

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)