diff options
author | Holger Levsen <holger@layer-acht.org> | 2014-09-28 14:50:09 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2014-09-28 14:50:09 +0200 |
commit | c8f08b2acb1c491f11cd963803da55e7284cbf7f (patch) | |
tree | a7d5e21b11a75b76fe1e96a39729281c714f55de | |
parent | 213e0ced870f7b70f1c7ec9a94bd0e87742e2a1d (diff) | |
download | jenkins.debian.net-c8f08b2acb1c491f11cd963803da55e7284cbf7f.tar.xz |
reproducible: .diffp files are now .log files
-rwxr-xr-x | bin/reproducible_stats.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_stats.sh b/bin/reproducible_stats.sh index 8ac1335e..3617e5e5 100755 --- a/bin/reproducible_stats.sh +++ b/bin/reproducible_stats.sh @@ -40,7 +40,7 @@ htmlecho "<p>$COUNT_TOTAL packages attempted to build so far, out of $AMOUNT in htmlecho "<p>$COUNT_BAD packages ($PERCENT_BAD% of $COUNT_TOTAL) failed to built reproducibly: <code>" for PKG in $BAD ; do VERSION=$(sqlite3 $PACKAGES_DB "SELECT version FROM source_packages WHERE name = \"$PKG\"") - htmlecho "<a href=\"$JENKINS_URL/userContent/diffp/${PKG}_${VERSION}.diffp\">$PKG </a> " + htmlecho "<a href=\"$JENKINS_URL/userContent/diffp/${PKG}_${VERSION}.diffp.log\">$PKG </a> " done htmlecho "</code></p>" htmlecho |