Skip to content

Commit 61b9da1

Browse files
committed
build(Makefile): Update doc tasks
1 parent 8085cf3 commit 61b9da1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ watch_test:
2424
if command -v entr > /dev/null; then ${PY_FILES} | entr -c $(MAKE) test; else $(MAKE) test entr_warn; fi
2525

2626
build_docs:
27-
poetry run mkdocs build
27+
$(MAKE) -C docs html
2828

2929
watch_docs:
3030
if command -v entr > /dev/null; then ${DOC_FILES} | entr -c $(MAKE) build_docs; else $(MAKE) build_docs entr_warn; fi
3131

3232
serve_docs:
33-
python -m http.server --directory site
33+
$(MAKE) -C docs serve
3434

3535
dev_docs:
3636
$(MAKE) -j watch_docs serve_docs

0 commit comments

Comments
 (0)