Skip to content

Commit feff3b9

Browse files
committed
build: --keep-going with docs build to show all errors at once
Without --keep-going, 'make html' showed a single error at a time. With --keep-going, 'make html' shows them all in one big list. (Either way, the build would fail if there are any warnings, as desired.)
1 parent 19e7527 commit feff3b9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ clean:
4242
-rm -rf $(BUILDDIR)/*
4343

4444
html:
45-
$(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
45+
$(SPHINXBUILD) --keep-going -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
4646
@echo
4747
@echo "Build finished. The HTML pages are in $(BUILDDIR)/html."
4848

0 commit comments

Comments
 (0)