Skip to content

Commit

Permalink
add mdbook script
Browse files Browse the repository at this point in the history
  • Loading branch information
limuy2022 committed Jun 2, 2024
1 parent 761447f commit 017d989
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions script/build_book.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import os

os.chdir("../docs")
for i in os.listdir("."):
if i.startswith("book"):
os.chdir(i)
os.system("mdbook build")
os.chdir("..")

0 comments on commit 017d989

Please sign in to comment.