Skip to content

Commit 446ccf0

Browse files
authored
Remove redundant --keep-going when running Sphinx (#1544)
1 parent c8677db commit 446ccf0

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ SPHINXBUILD = $(VENVDIR)/bin/sphinx-build
1010
# there are duplicate labels. These cause warnings, which prevent the
1111
# build from finishing. Turn off --fail-on-warning so we can see the
1212
# finished results.
13-
#SPHINXOPTS = --fail-on-warning --keep-going
14-
SPHINXOPTS = --keep-going
13+
#SPHINXOPTS = --fail-on-warning
14+
SPHINXOPTS =
1515
BUILDDIR = _build
1616
BUILDER = html
1717
JOBS = auto

make.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ if "%PYTHON%" == "" (
1111
)
1212

1313
set BUILDDIR=_build
14-
set SPHINXOPTS=--fail-on-warning --keep-going
14+
set SPHINXOPTS=--fail-on-warning
1515
set _ALL_SPHINX_OPTS=%SPHINXOPTS%
1616

1717
if "%1" == "check" goto check

make.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Set-StrictMode -Version 3.0
88
$ErrorActionPreference = "Stop"
99

1010
$BUILDDIR = "_build"
11-
$SPHINXOPTS = "--fail-on-warning --keep-going"
11+
$SPHINXOPTS = "--fail-on-warning"
1212
$_ALL_SPHINX_OPTS = $SPHINXOPTS
1313

1414
$_PYTHON = $Env:PYTHON ?? "py -3"

0 commit comments

Comments
 (0)