From 2caca4cae629d4a05bd798211c157e1d074b8e09 Mon Sep 17 00:00:00 2001 From: Jason Kridner <jkridner@beagleboard.org> Date: Thu, 7 Dec 2023 00:32:59 -0500 Subject: [PATCH] gitlab-build: use 0 for false Found comment about booleans at https://www.sphinx-doc.org/en/master/man/sphinx-build.html#cmdoption-sphinx-build-D. For boolean values, use 0 or 1 as the value. --- gitlab-build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitlab-build.sh b/gitlab-build.sh index a8154e3a..02d0c007 100755 --- a/gitlab-build.sh +++ b/gitlab-build.sh @@ -138,7 +138,7 @@ elif [ "$CI_COMMIT_TAG" != "" ]; then export VER_DIR=$GIT_BRANCH export PAGES_SLUG=$GIT_BRANCH fi - export SPHINXOPTS="-D todo_include_todos=False" + export SPHINXOPTS="-D todo_include_todos=0" do_build else echo "***** Not on a branch or tag *****" -- GitLab