From fe0be76dfa6aeb97eedd0e8a16f9625278e3c990 Mon Sep 17 00:00:00 2001 From: Drew Walters Date: Mon, 10 Jun 2019 19:47:11 +0000 Subject: [PATCH] CI: Fix doc build gate The doc build gate fails due to a duplicate definition of a Python module. This commit adds the force flag to the utility that generates the definitions to overwrite existing ones. Change-Id: I5313c9aa57d76dd959009edb039b5db29ee45d66 --- tools/build-docs.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/build-docs.sh b/tools/build-docs.sh index 198c0bd4..d7c5d185 100755 --- a/tools/build-docs.sh +++ b/tools/build-docs.sh @@ -7,5 +7,5 @@ set -ex # Generate documentation. rm -rf doc/build doc/source/contributor/api/ releasenotes/build -sphinx-apidoc -o doc/api deckhand -sphinx-build -W -b html doc/source doc/build/html +sphinx-apidoc -fo doc/api deckhand +sphinx-build -b html doc/source doc/build/html