diff options
| author | Dan Halbert <halbert@halwitz.org> | 2018-02-01 05:50:01 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-02-01 05:50:01 -0800 |
| commit | 7c6adaa661aa066aca27457b966f5168189186c5 (patch) | |
| tree | af6963c66210383f302d0ef372020972cd370807 | |
| parent | d556ce291fac28be244a127235b7e87696a02514 (diff) | |
| parent | 737178e0d259478bc51193bd4f7180f2677d4f1c (diff) | |
Merge pull request #567 from tannewt/ignore_docs_dir
Ignore docs directory when freezing as well.
| -rwxr-xr-x | tools/preprocess_frozen_modules.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/preprocess_frozen_modules.py b/tools/preprocess_frozen_modules.py index 0233fba61..d157deeee 100755 --- a/tools/preprocess_frozen_modules.py +++ b/tools/preprocess_frozen_modules.py @@ -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: |
