Ignore docs directory when freezing as well.

conf.py for Sphinx will be moved here.
This commit is contained in:
Scott Shawcroft 2018-01-31 11:10:50 -08:00
parent d556ce291f
commit 737178e0d2

View File

@ -33,7 +33,7 @@ def copy_and_process(in_dir, out_dir):
for root, subdirs, files in os.walk(in_dir):
# Skip library examples directories.
if Path(root).name == 'examples':
if Path(root).name in ['examples', 'docs']:
continue
for file in files: