From a2e3bccf3ce08741533cf4af4be2ac62dd09d6cb Mon Sep 17 00:00:00 2001 From: Luca Beltrame Date: Sun, 30 Jan 2022 10:08:40 +0100 Subject: [PATCH] Use the live build log URL It's easier then to check the package and what not and the full log is one click away anyway. --- oscbot/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/oscbot/__init__.py b/oscbot/__init__.py index 9c21962..1469901 100644 --- a/oscbot/__init__.py +++ b/oscbot/__init__.py @@ -27,8 +27,8 @@ REPO_TEMPLATE = """ {% for package in repo.packages %} {%if package.status != "disabled" %} -{% set build_log_url = "{0}/public/build/{1}/{2}/{3}/{4}/_log".format( - base_url,project, repo.name, repo.arch, package.name) %} +{% set build_log_url = "{0}/package/live_build_log/{1}/{2}/{3}/{4}/".format( + base_url, project, package.name, repo.name, repo.arch) %} - {{ package.name }} - *[{{ package.status }}]({{ build_log_url }})* {% else %} - {{ package.name }} - *{{ package.status }}*