aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTibor Frank <tifrank@cisco.com>2017-04-21 09:54:07 +0200
committerTibor Frank <tifrank@cisco.com>2017-04-21 09:11:49 +0000
commitaef6be686bfb1cdbf85d1fca0e5d28e43650ec0d (patch)
treebf530dfcc1daf3f6ef7698333ea11b1584e94f86
parent76132b51bfe4b2a0813764129f6066c08b4e86f9 (diff)
CSIT-561: Add release and version to the header
Change-Id: I73ca0e924b74a8cc523c00b00a80598e09c8ef43 Signed-off-by: Tibor Frank <tifrank@cisco.com> (cherry picked from commit bc2036f4ce9b8aa705161ee1c8566b134fc6570c)
-rwxr-xr-xresources/tools/doc_gen/run_doc.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/resources/tools/doc_gen/run_doc.sh b/resources/tools/doc_gen/run_doc.sh
index f4e41e5de4..ca955cc6c4 100755
--- a/resources/tools/doc_gen/run_doc.sh
+++ b/resources/tools/doc_gen/run_doc.sh
@@ -45,7 +45,8 @@ export PYTHONPATH=`pwd`
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