X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=resources%2Ftools%2Fdoc_gen%2Frun_doc.sh;h=36535df0310b2d69fa6580f423e5984451469ea7;hb=33741e9e4d961c7ca805ef635982cd210a44a3b4;hp=f4e41e5de49bbea018f8a206fe7a7611a22488ee;hpb=d3ee9b63f4b6c819e21a20f74da3d69c8f1c87c6;p=csit.git diff --git a/resources/tools/doc_gen/run_doc.sh b/resources/tools/doc_gen/run_doc.sh index f4e41e5de4..36535df031 100755 --- a/resources/tools/doc_gen/run_doc.sh +++ b/resources/tools/doc_gen/run_doc.sh @@ -33,19 +33,18 @@ virtualenv ${WORKING_DIR}/env # Install CSIT requirements: pip install -r ../../../requirements.txt -# Install Sphinx: -pip install -r ${WORKING_DIR}/requirements.txt export PYTHONPATH=`pwd` # Generate rst files: -./gen_rst.py +python 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 -v -b html ${WORKING_DIR} ${BUILD_DIR}/ +DATE=$(date -u '+%d-%b-%Y') +sphinx-build -v -c ${WORKING_DIR} -a -b html -E -D release=$1 -D version="$1 documentation - $DATE" ${WORKING_DIR} ${BUILD_DIR}/ find . -type d -name 'env' | xargs rm -rf