Skip to content

Commit 77b9bfd

Browse files
committed
ls some directories and reinstall sphinx to test it out
1 parent 6282921 commit 77b9bfd

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

Makefile

+8
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,14 @@ help:
4141
# treated as errors, which is good to skip simple Sphinx syntax mistakes.
4242
.PHONY: build
4343
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+
4452
PYTHONWARNINGS=ignore::FutureWarning $(VENV)/bin/sphinx-build -j auto -W --keep-going -b html -d $(OUTPUT_DOCTREE) -D language=$(LANGUAGE) . $(OUTPUT_HTML) && \
4553
@echo "Success! Open file://`pwd`/$(OUTPUT_HTML)/index.html, " \
4654
"or run 'make serve' to see them in http://localhost:8000";

0 commit comments

Comments
 (0)