From 737178e0d259478bc51193bd4f7180f2677d4f1c Mon Sep 17 00:00:00 2001 From: Scott Shawcroft Date: Wed, 31 Jan 2018 11:10:50 -0800 Subject: [PATCH] Ignore docs directory when freezing as well. conf.py for Sphinx will be moved here. --- tools/preprocess_frozen_modules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/preprocess_frozen_modules.py b/tools/preprocess_frozen_modules.py index 0233fba614..d157deeee9 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: