We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c9a89d commit f9e986eCopy full SHA for f9e986e
Makefile
@@ -26,14 +26,8 @@ watch_test:
26
build_docs:
27
$(MAKE) -C docs html
28
29
-watch_docs:
30
- if command -v entr > /dev/null; then ${DOC_FILES} | entr -c $(MAKE) build_docs; else $(MAKE) build_docs entr_warn; fi
31
-
32
-serve_docs:
33
- $(MAKE) -C docs serve
34
35
-dev_docs:
36
- $(MAKE) -j watch_docs serve_docs
+start_docs:
+ $(MAKE) -C docs start
37
38
flake8:
39
flake8 libvcs tests
docs/Makefile
@@ -175,3 +175,6 @@ serve_py3:
175
176
dev:
177
$(MAKE) -j watch serve
178
+
179
+start:
180
+ poetry run sphinx-autobuild "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
0 commit comments