diff options
author | Tibor Frank <tifrank@cisco.com> | 2016-12-16 12:22:54 +0100 |
---|---|---|
committer | Peter Mikus <pmikus@cisco.com> | 2016-12-16 13:21:59 +0000 |
commit | d13861eaa681cea95cf4d366a5dc82d93ed71817 (patch) | |
tree | a1c950a95237d5ad002dd98eb04070fa9c19b039 /resources/tools/doc_gen/run_doc.sh | |
parent | bd8ed88219178bb3b810d290b4ef9ba885baaf61 (diff) |
CSIT Documentation auto generation
- remove all *.rst files in env from build
- add ignore list for directories which will not be included in build
Change-Id: Ifef18255d366094704041b526d707fdb6fc4567d
Signed-off-by: Tibor Frank <tifrank@cisco.com>
Diffstat (limited to 'resources/tools/doc_gen/run_doc.sh')
-rwxr-xr-x | resources/tools/doc_gen/run_doc.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/resources/tools/doc_gen/run_doc.sh b/resources/tools/doc_gen/run_doc.sh index 1a037071a5..544554e93c 100755 --- a/resources/tools/doc_gen/run_doc.sh +++ b/resources/tools/doc_gen/run_doc.sh @@ -41,8 +41,11 @@ export PYTHONPATH=`pwd` # Generate rst files: ./gen_rst.py +# Remove all rst files from ./${WORKING_DIR}/env directory - we do not need them +find ./${WORKING_DIR}/env -type f -name '*.rst' | xargs rm -f + # Generate the documentation: -sphinx-build -vvv -b html ${WORKING_DIR}/ ${BUILD_DIR}/ +sphinx-build -v -b html ${WORKING_DIR} ${BUILD_DIR}/ find . -type d -name 'env' | xargs rm -rf |