diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-10-16 14:31:37 -0400 |
---|---|---|
committer | Bert Belder <bertbelder@gmail.com> | 2019-10-16 11:31:37 -0700 |
commit | 99d8ac70dbf412ee5de9ad2370c75dcd51cc5def (patch) | |
tree | 828b02633ac9bb3a51688a6d0cb01cd76e906daa /tools/docs.py | |
parent | c1b302d76968bb55df24ef360a9fbf71857ae35c (diff) |
Fix tools/docs.py (#3135)
Diffstat (limited to 'tools/docs.py')
-rwxr-xr-x | tools/docs.py | 2 |
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. |