Skip to content

Commit 1b07b47

Browse files
committed
Missing absolute path.
1 parent 6c61883 commit 1b07b47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build_docs.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ def build_one(version, git_branch, isdev, quick, venv, build_root, www_root,
264264
if not quick:
265265
logging.debug("Copying dist files")
266266
shell_out(['chown', '-R', ':' + group, os.path.join(checkout, 'Doc/dist/')])
267-
shell_out(['chmod', '-R', 'o+r', os.path.join('Doc/dist/')])
267+
shell_out(['chmod', '-R', 'o+r', os.path.join(checkout, os.path.join('Doc/dist/'))])
268268
shell_out(['mkdir', '-m', 'o+rx', '-p', os.path.join(target, 'archives')])
269269
shell_out(['chown', ':' + group, os.path.join(target, 'archives')])
270270
shell_out("cp -a Doc/dist/* %s/archives" % target, shell=True)

0 commit comments

Comments
 (0)