summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_packages.py
diff options
context:
space:
mode:
authorMattia Rizzolo <mattia@mapreri.org>2015-05-14 02:07:04 +0200
committerHolger Levsen <holger@layer-acht.org>2015-06-04 18:23:42 +0200
commitee9c617576b85359a5b756b5ed07a8e62ce3a45c (patch)
tree8656ec30c56c0d99b5263689baa17f826ba5b625 /bin/reproducible_html_packages.py
parentb1e9054f3b839ba2169db66039318b05a092647a (diff)
downloadjenkins.debian.net-ee9c617576b85359a5b756b5ed07a8e62ce3a45c.tar.xz
reproducible: html_packages: be critical when a .buildinfo is missing
Diffstat (limited to 'bin/reproducible_html_packages.py')
-rwxr-xr-xbin/reproducible_html_packages.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/bin/reproducible_html_packages.py b/bin/reproducible_html_packages.py
index 1bece45d..a2a91c6d 100755
--- a/bin/reproducible_html_packages.py
+++ b/bin/reproducible_html_packages.py
@@ -131,7 +131,6 @@ def gen_extra_links(package, version, suite, arch, status):
links = ''
default_view = ''
- # check whether there are notes available for this package
if os.access(notes, os.R_OK):
url = NOTES_URI + '/' + package + '_note.html'
links += '<a href="' + url + '" target="main">notes</a>\n'
@@ -156,7 +155,7 @@ def gen_extra_links(package, version, suite, arch, status):
if not default_view:
default_view = url
else:
- log.debug('buildinfo not detected at ' + buildinfo)
+ log.critical('buildinfo not detected at ' + buildinfo)
rbuild = pkg_has_rbuild(package, version, suite, arch)
if rbuild: # being a tuple (rbuild path, size), empty if non existant
url = RBUILD_URI + '/' + suite + '/' + arch + '/' + package + '_' + \