Skip to content

Commit

Permalink
fix(build_docs): change index.html file mode
Browse files Browse the repository at this point in the history
  • Loading branch information
TheManchineel committed Dec 12, 2024
1 parent 791a560 commit c6f52e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build_docs_v2.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def build_docs_and_index():
]
).wait()

with open("/workspace/index.html", "w+") as index_file:
with open("/workspace/index.html", "r+") as index_file:
original_html = index_file.read()
index_file.write(original_html.replace("{{{PLACEHOLDER}}}", index_entries.getvalue()))

Expand Down

0 comments on commit c6f52e6

Please sign in to comment.