Skip to content

Commit

Permalink
Trying to fix GH-pages
Browse files Browse the repository at this point in the history
  • Loading branch information
d-krupke committed Apr 29, 2024
1 parent 50ebd1b commit 5595911
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def convert_for_mdbook(content):
content = current_file.read()
f.write(content)
f.write("\n\n")
Path("./.mdbook/src").mkdir(parents=True, exist_ok=True)
with open(Path("./.mdbook/src")/file, "w") as book_file:
Path("./.mdbook/").mkdir(parents=True, exist_ok=True)
with open(Path("./.mdbook/")/file, "w") as book_file:
book_file.write(convert_for_mdbook(content))

0 comments on commit 5595911

Please sign in to comment.