Skip to content

Commit f4a0109

Browse files
authored
Fix the guide destination dir as per mdbook v0.5 change (#680)
mdbook v0.5 has a breaking change in --dest-dir option. rust-lang/mdBook#2806
1 parent 4a564fe commit f4a0109

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,10 @@ check:
3434

3535
docs:
3636
mkdir -p docs out/api out/guide/en
37+
mkdir -p docs out/api out/guide/ja
3738
$(UV) run pdoc -e serde=https://github.com/yukinarit/pyserde/tree/main/serde/ serde -o out/api
38-
mdbook build -d ../../out/guide/en ./docs/en
39-
mdbook build -d ../../out/guide/ja ./docs/ja
39+
mdbook build -d ./out/guide/en ./docs/en
40+
mdbook build -d ./out/guide/ja ./docs/ja
4041

4142
open-docs:
4243
$(UV) run pdoc -e serde=https://github.com/yukinarit/pyserde/tree/main/serde serde

0 commit comments

Comments
 (0)