Skip to content

Commit

Permalink
dev(narugo): try fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
narugo1992 committed Dec 8, 2023
1 parent 7d6dd58 commit 6040035
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,11 @@
if pip.wait() != 0:
raise ChildProcessError("Pip install failed with %d." % (pip.returncode,))

pip_docs_cmd = (where.first('pip'), 'install', '-r', os.path.join(_PROJ_PATH, 'requirements-doc.txt'))
print("Install pip docs requirements {cmd}...".format(cmd=repr(pip_docs_cmd)))
pip_docs = Popen(pip_docs_cmd, stdout=sys.stdout, stderr=sys.stderr, env=_env, cwd=_DOC_PATH)
if pip_docs.wait() != 0:
raise ChildProcessError("Pip docs install failed with %d." % (pip.returncode,))
# pip_docs_cmd = (where.first('pip'), 'install', '-r', os.path.join(_PROJ_PATH, 'requirements-doc.txt'))
# print("Install pip docs requirements {cmd}...".format(cmd=repr(pip_docs_cmd)))
# pip_docs = Popen(pip_docs_cmd, stdout=sys.stdout, stderr=sys.stderr, env=_env, cwd=_DOC_PATH)
# if pip_docs.wait() != 0:
# raise ChildProcessError("Pip docs install failed with %d." % (pip.returncode,))

all_cmd = (where.first('make'), '-f', "all.mk", "build")
print("Building all {cmd} at {cp}...".format(cmd=repr(all_cmd), cp=repr(_DOC_PATH)))
Expand Down

0 comments on commit 6040035

Please sign in to comment.