aboutsummaryrefslogtreecommitdiff
path: root/doc/make_doc.sh
diff options
context:
space:
mode:
authorRémi Verschelde2015-12-12 23:30:45 +0100
committerRémi Verschelde2015-12-12 23:30:45 +0100
commitaeb5ea59340f91ae445330c95429f903a8f20e8a (patch)
tree09e0e73b3faedfbbaed8823137a0935c56a61930 /doc/make_doc.sh
parentfb00cee33bd29969805572238815c0fb3d29ee45 (diff)
downloadgodot-aeb5ea59340f91ae445330c95429f903a8f20e8a.tar.gz
godot-aeb5ea59340f91ae445330c95429f903a8f20e8a.tar.zst
godot-aeb5ea59340f91ae445330c95429f903a8f20e8a.zip
Move documentation python tools to doc/tools folder
Diffstat (limited to '')
-rw-r--r--doc/make_doc.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/doc/make_doc.sh b/doc/make_doc.sh
index a76f568bf..5d0c1a9c2 100644
--- a/doc/make_doc.sh
+++ b/doc/make_doc.sh
@@ -2,7 +2,6 @@
here="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
godotHome=$(dirname "$here")
docTarget=${here}/html/class_list
-toolsRoot=${godotHome}/tools
throw() {
echo "$@" >&2
@@ -12,6 +11,6 @@ throw() {
[ -d "$docTarget" ] || mkdir -p "$docTarget" || throw "Could not create doc target $docTarget"
cd "$docTarget"
-python ${toolsRoot}/docdump/makehtml.py -multipage ${here}/base/classes.xml
+python ${here}/makehtml.py -multipage ${here}/base/classes.xml
cd "$here"