We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fc9b45 commit 9b5cde4Copy full SHA for 9b5cde4
.jenkins/sphinx_files.py
@@ -11,7 +11,7 @@ def main() -> None:
11
files_to_run = calculate_shards(all_files, num_shards=20)[int(os.environ.get("WORKER_ID", "1")) - 1]
12
files_to_run = [x for x in files_to_run if x not in [f"{f}.py" for f in NOT_RUN]]
13
14
- os.mkdir("docs_to_zip", exist_ok=True)
+ os.makedirs("docs_to_zip", exist_ok=True)
15
16
env = os.environ.copy()
17
for file in files_to_run:
0 commit comments