force colored output in build and linkcheck tools

This commit is contained in:
Wolfgang Walther
2022-01-08 10:50:48 +01:00
committed by Wolfgang Walther
parent 6c382c5985
commit 62726ddcfd
+2 -2
View File
@@ -31,7 +31,7 @@ in
# clean previous build, otherwise some errors might be supressed
rm -rf _build
${python}/bin/sphinx-build -W -b html -a -n . _build
${python}/bin/sphinx-build --color -W -b html -a -n . _build
'';
serve =
@@ -81,6 +81,6 @@ in
''
set -euo pipefail
${python}/bin/sphinx-build -b linkcheck . _build
${python}/bin/sphinx-build --color -b linkcheck . _build
'';
}