diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-08-07 12:41:19 +0000 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-08-07 15:19:37 +0200 |
commit | a9439e8e0590132d1950ff6a1ca2d075bcfbfeba (patch) | |
tree | 0a8484c09d8fbc1d492473be2ff5988f7504ed37 /bin | |
parent | 3fc6d22120bda404cc70608eb3716a4036f24d74 (diff) | |
download | jenkins.debian.net-a9439e8e0590132d1950ff6a1ca2d075bcfbfeba.tar.xz |
reproducible: _html_packages: do not complain about missing .buildinfo files for depwait and 404 packages
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_html_packages.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_html_packages.py b/bin/reproducible_html_packages.py index 903c9ef5..31080862 100755 --- a/bin/reproducible_html_packages.py +++ b/bin/reproducible_html_packages.py @@ -164,8 +164,8 @@ def gen_extra_links(package, version, suite, arch, status): links += '<a href="' + url + '" target="main">buildinfo</a>\n' if not default_view: default_view = url - elif status not in ('untested', 'blacklisted', 'FTBFS', 'not for us') and \ - not args.ignore_missing_files: + elif not args.ignore_missing_files and status not in \ + ('untested', 'blacklisted', 'FTBFS', 'not for us', 'depwait', '404'): 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 |