Commit index.html

This commit is contained in:
Unrud 2020-02-27 03:49:46 +01:00
parent 60e448b2b2
commit 275246b0e4

View file

@ -135,8 +135,10 @@ def main():
convert_doc(src_path, to_path, branch, branches)
run_git("add", "--", to_path)
if branches:
with open(os.path.join(TARGET_DIR, "index.html"), "w") as f:
index_path = os.path.join(TARGET_DIR, "index.html")
with open(index_path, "w") as f:
f.write(make_index_html(branches[0]))
run_git("add", "--", index_path)
with contextlib.suppress(subprocess.CalledProcessError):
run_git("diff", "--cached", "--quiet")
print("No changes", file=sys.stderr)