From 102a9c012999647747936fd6eb120407f19af6fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20Kone=C4=8Dn=C3=BD?= Date: Tue, 25 Apr 2023 15:36:25 +0200 Subject: [PATCH] [release-monitoring] Fix the docs build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The package from PyPI doesn't have sphinx-build-3 command, but instead has only sphinx-build command. Let's use it instead. Signed-off-by: Michal Konečný --- .../openshift-apps/release-monitoring/templates/buildconfig.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/openshift-apps/release-monitoring/templates/buildconfig.yml b/roles/openshift-apps/release-monitoring/templates/buildconfig.yml index 104d8a5d3c..2e2d12b404 100644 --- a/roles/openshift-apps/release-monitoring/templates/buildconfig.yml +++ b/roles/openshift-apps/release-monitoring/templates/buildconfig.yml @@ -59,7 +59,7 @@ items: pushd docs && \ mkdir -p images && \ python3 generate_db_schema && \ - sphinx-build-3 -b html . _build/html && \ + sphinx-build -b html . _build/html && \ mkdir -p ../anitya/static/docs/ && \ cp -r _build/html/* ../anitya/static/docs/ && \ popd && \