diff options
author | Holger Levsen <holger@layer-acht.org> | 2014-10-17 23:13:55 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2014-10-17 23:13:55 +0200 |
commit | 4c048fd44ef1b7d46af3854b0c44a71ff6cbb11d (patch) | |
tree | 0d51c2508c72873a72c3813437463f34f87cb583 /bin | |
parent | bd9abd7caae22a81fb7dcd8d708c58d305200905 (diff) | |
download | jenkins.debian.net-4c048fd44ef1b7d46af3854b0c44a71ff6cbb11d.tar.xz |
reproducible: fix detection of packages with .buildinfo files
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_common.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_common.sh b/bin/reproducible_common.sh index d7975ea6..1a30bbaa 100755 --- a/bin/reproducible_common.sh +++ b/bin/reproducible_common.sh @@ -241,7 +241,7 @@ publish_page() { } set_package_star() { - if [ -f /var/lib/jenkins/userContent/buildinfo/${SRCPACKAGE}_.buildinfo ] ; then + if [ -f /var/lib/jenkins/userContent/buildinfo/${PKG}_.buildinfo ] ; then STAR="<span class=\"beta\">β</span>" # used to be a star... else STAR="" |