From cbd75b0d671a6d239bb680f75a9507e4e12c9e52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20Kone=C4=8Dn=C3=BD?= Date: Tue, 27 Sep 2022 16:02:39 +0200 Subject: [PATCH] [release-monitoring] Use correct path to copy symlink from MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 04c4ff6430..cdf367be32 100644 --- a/roles/openshift-apps/release-monitoring/templates/buildconfig.yml +++ b/roles/openshift-apps/release-monitoring/templates/buildconfig.yml @@ -72,7 +72,7 @@ items: poetry build && \ pip-3 install dist/*.whl && \ # Copy the symlink, it's not part of wheel - cp static/bootstrap /usr/local/lib/python3.10/site-packages/anitya/static/ + cp anitya/static/bootstrap /usr/local/lib/python3.10/site-packages/anitya/static/ {% else %} python3 setup.py install && \ pip-3 install . && \