From fa0876750aec00dfa45d01da151d37112dba6c7c Mon Sep 17 00:00:00 2001 From: Gage Hugo Date: Tue, 21 Apr 2020 13:10:48 -0500 Subject: [PATCH] Fixing docs build for osh-infra There was a change[0] in zuul that made the docs job fail if the build/html dir was empty. Our docs job was putting the built docs in the source file by mistake, this ps fixes this issue. [0] https://review.opendev.org/#/c/721221/ Change-Id: I9ef336cf32dad96ff4a4fcc2743363a8f40f4718 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index ab9709776c..5685b3100e 100644 --- a/tox.ini +++ b/tox.ini @@ -17,6 +17,6 @@ commands = {posargs} deps = -r{toxinidir}/doc/requirements.txt commands = rm -rf doc/build - sphinx-build -W -b html doc/source doc/source/html + sphinx-build -W -b html doc/source doc/build/html whitelist_externals = rm