Skip to content

Commit

Permalink
pandoc also runs slowly on emulated arm / riscv
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Apr 29, 2024
1 parent 7ecd88a commit 5b66f26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -580,7 +580,7 @@ def convert_doc(fsrc: str, fdst: str, fmt="html", force=False):
cmd = [pandoc, "--from", "commonmark", "--to", fmt, "-o", fdst, fsrc]
if fmt=="html" and pandoc_lua_ENABLED:
cmd += ["--lua-filter", "./fs/bin/links-to-html.lua"]
r = subprocess.Popen(cmd).wait(30)
r = subprocess.Popen(cmd).wait(120)
assert r==0, "'%s' returned %s" % (" ".join(cmd), r)


Expand Down

0 comments on commit 5b66f26

Please sign in to comment.