diff options
author | Jack Lloyd <[email protected]> | 2015-10-15 12:35:53 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2015-10-15 12:35:53 -0400 |
commit | ecd6d9de95fceba95aaf6e93a0543b05ef6a8369 (patch) | |
tree | 5e8f2ecad3640574b14fb3a5ba5dc350cce7b3a5 /src/scripts/website.sh | |
parent | 7335eefcf419a2ab7a770c3aa6fbb06956891bad (diff) |
Add security notifications/advisory page to website.
Based on GH #272
Diffstat (limited to 'src/scripts/website.sh')
-rwxr-xr-x | src/scripts/website.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/scripts/website.sh b/src/scripts/website.sh index 525b2fcca..5b7e1c6cb 100755 --- a/src/scripts/website.sh +++ b/src/scripts/website.sh @@ -12,8 +12,8 @@ rm -rf $WEBSITE_SRC_DIR $WEBSITE_DIR mkdir -p $WEBSITE_SRC_DIR cp readme.rst $WEBSITE_SRC_DIR/index.rst -cp -r doc/news.rst $WEBSITE_SRC_DIR -echo -e ".. toctree::\n\n index\n news\n" > $WEBSITE_SRC_DIR/contents.rst +cp -r doc/news.rst doc/security.rst $WEBSITE_SRC_DIR +echo -e ".. toctree::\n\n index\n news\n security\n" > $WEBSITE_SRC_DIR/contents.rst sphinx-build -t website -c "$SPHINX_CONFIG" -b "$SPHINX_BUILDER" $WEBSITE_SRC_DIR $WEBSITE_DIR sphinx-build -t website -c "$SPHINX_CONFIG" -b "$SPHINX_BUILDER" doc/manual $WEBSITE_DIR/manual |