Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Carlisle <carlisle.b3d@gmail.com>2018-08-14 02:07:50 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2018-08-14 03:51:33 +0300
commit57e63599205f5cba75c119b44d253ed7cc65771d (patch)
treea328bfedd28e39417334cb1a9dd8b06044faa68f /doc/python_api/sphinx_doc_gen.sh
parent7d8477e0190d2b8b661eebf4e110831f2c3a9805 (diff)
PyDoc: Remove hack to rename main doc from 'contents' to 'index'
Diffstat (limited to 'doc/python_api/sphinx_doc_gen.sh')
-rwxr-xr-xdoc/python_api/sphinx_doc_gen.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/doc/python_api/sphinx_doc_gen.sh b/doc/python_api/sphinx_doc_gen.sh
index b3bdd386f8c..0c1f531ffac 100755
--- a/doc/python_api/sphinx_doc_gen.sh
+++ b/doc/python_api/sphinx_doc_gen.sh
@@ -122,7 +122,6 @@ fi
if $DO_UPLOAD ; then
- cp $SPHINX_WORKDIR/sphinx-out/contents.html $SPHINX_WORKDIR/sphinx-out/index.html
ssh $SSH_USER@blender.org 'rm -rf '$SSH_UPLOAD_FULL'/*'
rsync --progress -ave "ssh -p 22" $SPHINX_WORKDIR/sphinx-out/* $SSH_HOST:$SSH_UPLOAD_FULL/
@@ -161,5 +160,5 @@ fi
echo ""
echo "Finished! view the docs from: "
-if $DO_OUT_HTML ; then echo " html:" $SPHINX_WORKDIR/sphinx-out/contents.html ; fi
+if $DO_OUT_HTML ; then echo " html:" $SPHINX_WORKDIR/sphinx-out/index.html ; fi
if $DO_OUT_PDF ; then echo " pdf:" $SPHINX_WORKDIR/sphinx-out/blender_python_reference_$BLENDER_VERSION.pdf ; fi