summaryrefslogtreecommitdiff
path: root/tools/docs.py
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2019-10-16 14:31:37 -0400
committerBert Belder <bertbelder@gmail.com>2019-10-16 11:31:37 -0700
commit99d8ac70dbf412ee5de9ad2370c75dcd51cc5def (patch)
tree828b02633ac9bb3a51688a6d0cb01cd76e906daa /tools/docs.py
parentc1b302d76968bb55df24ef360a9fbf71857ae35c (diff)
Fix tools/docs.py (#3135)
Diffstat (limited to 'tools/docs.py')
-rwxr-xr-xtools/docs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/docs.py b/tools/docs.py
index 901a633e0..6c420f89c 100755
--- a/tools/docs.py
+++ b/tools/docs.py
@@ -13,7 +13,7 @@ run(["cargo", "doc", "--all", "--no-deps", "-vv"])
# 'deno types' is stored in js/lib.deno_runtime.d.ts
# We want to run typedoc on that declaration file only.
-os.chdir(os.path.join(root_path, "js"))
+os.chdir(os.path.join(root_path, "cli/js"))
# You must have typedoc installed seprately.
# TODO Replace typedoc with something else ASAP. It's very awful.