Skip to content

Commit ba2c9c3

Browse files
ned-deilybenjaminp
authored andcommitted
build-docs needs paths to blurb and venv (#30)
1 parent c718134 commit ba2c9c3

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

build_docs.py

100644100755
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,9 +200,10 @@ def build_one(version, isdev, quick, venv, build_root, www_root,
200200
logname = "{}-{}.log".format(os.path.basename(checkout), language)
201201
python = os.path.join(venv, "bin/python")
202202
sphinxbuild = os.path.join(venv, "bin/sphinx-build")
203+
blurb = os.path.join(venv, "bin/blurb")
203204
shell_out(
204-
"cd Doc; make PYTHON=%s SPHINXBUILD=%s SPHINXOPTS='%s' %s >> %s 2>&1" %
205-
(python, sphinxbuild, sphinxopts, maketarget,
205+
"cd Doc; make PYTHON=%s SPHINXBUILD=%s BLURB=%s VENVDIR=%s SPHINXOPTS='%s' %s >> %s 2>&1" %
206+
(python, sphinxbuild, blurb, venv, sphinxopts, maketarget,
206207
os.path.join(log_directory, logname)))
207208
shell_out("chgrp -R {group} {file}".format(
208209
group=group, file=log_directory))

0 commit comments

Comments
 (0)