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 7f175fe commit 310ea04Copy full SHA for 310ea04
pypi_index_builder/build.py
@@ -19,6 +19,8 @@ def main():
19
env = Environment(loader=FileSystemLoader(settings.templates))
20
template = env.get_template("index.html")
21
22
+ settings.output.mkdir(parents=True, exist_ok=True)
23
+
24
with open(settings.output / "index.html", "w") as index_file:
25
index_file.write(template.render(index=index_data.keys()))
26
0 commit comments