We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6282921 commit 77b9bfdCopy full SHA for 77b9bfd
Makefile
@@ -41,6 +41,14 @@ help:
41
# treated as errors, which is good to skip simple Sphinx syntax mistakes.
42
.PHONY: build
43
build: setup
44
+ echo VENV
45
+ ls $(VENV)
46
+
47
+ echo VENV/bin
48
+ ls $(VENV)/bin
49
50
+ $(VENV)/bin/python -m pip install --force-reinstall sphinx==2.2.0
51
52
PYTHONWARNINGS=ignore::FutureWarning $(VENV)/bin/sphinx-build -j auto -W --keep-going -b html -d $(OUTPUT_DOCTREE) -D language=$(LANGUAGE) . $(OUTPUT_HTML) && \
53
@echo "Success! Open file://`pwd`/$(OUTPUT_HTML)/index.html, " \
54
"or run 'make serve' to see them in http://localhost:8000";
0 commit comments