Skip to content

Commit 46d6050

Browse files
author
Greg Turnquist
committed
Fixed issue with copying docs into target directory.
1 parent 246ffe2 commit 46d6050

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

build.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,8 @@ def docs_sphinx():
309309
os.chdir("docs/sphinx")
310310
os.system("make clean html epub man")
311311
os.chdir(cur)
312-
shutil.copytree("docs/sphinx/build/html", "target/docs/sphinx")
312+
shutil.copytree("docs/sphinx/build/html", "target/docs/sphinx/html")
313+
shutil.copytree("docs/sphinx/build/man", "target/docs/sphinx/man")
313314
shutil.copy("docs/sphinx/build/epub/SpringPython.epub", "target/docs/")
314315

315316
def create_pydocs():

0 commit comments

Comments
 (0)