Skip to content

Commit cc0dde6

Browse files
committed
tc
1 parent aa5b662 commit cc0dde6

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.jenkins/sphinx_files.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,13 @@ def main() -> None:
2121
env["RUNTHIS"] = stem
2222
subprocess.check_output(["make", "html"], env=env)
2323
subprocess.check_output(["make", "postprocess"], env=env)
24+
print("Done running")
2425
for file in glob.glob(f"docs/**/*", recursive=True):
2526
if stem in file:
2627
relative_path = Path(os.path.relpath(file, "docs"))
27-
os.makedirs(os.path.dirname(f"docs_to_zip/{relative_path.parent}"), exist_ok=True)
28+
print(relative_path)
29+
print(relative_path.parent)
30+
os.makedirs(os.path.dirname(f"/tmp/docs_to_zip/{relative_path.parent}"), exist_ok=True)
2831
shutil.copy(file, f"/tmp/docs_to_zip/{relative_path}")
2932
subprocess.check_output(["git", "reset", "--hard", "HEAD"])
3033
shutil.move("/tmp/docs_to_zip", "docs")

0 commit comments

Comments
 (0)