summaryrefslogtreecommitdiffstats
path: root/doc/make_doc.sh
diff options
context:
space:
mode:
Diffstat (limited to 'doc/make_doc.sh')
-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 a76f568bfc..5d0c1a9c2f 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"