diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-05-14 02:07:04 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-06-04 18:23:42 +0200 |
commit | ee9c617576b85359a5b756b5ed07a8e62ce3a45c (patch) | |
tree | 8656ec30c56c0d99b5263689baa17f826ba5b625 /bin | |
parent | b1e9054f3b839ba2169db66039318b05a092647a (diff) | |
download | jenkins.debian.net-ee9c617576b85359a5b756b5ed07a8e62ce3a45c.tar.xz |
reproducible: html_packages: be critical when a .buildinfo is missing
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_html_packages.py | 3 |
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 + '_' + \ |