diff options
author | Holger Levsen <holger@layer-acht.org> | 2014-09-28 15:27:17 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2014-09-28 15:27:17 +0200 |
commit | ff990ff3b31094cb9fecd1947d6ce37a8339718a (patch) | |
tree | 1934f350c1dabbe6c6e77d92c94eb57d550f64bc | |
parent | abe5683ebd4e172fde935838770c4558096b7030 (diff) | |
download | jenkins.debian.net-ff990ff3b31094cb9fecd1947d6ce37a8339718a.tar.xz |
reproducible: remove epoch when creating links to logfiles
-rwxr-xr-x | bin/reproducible_stats.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/reproducible_stats.sh b/bin/reproducible_stats.sh index 204f3454..4b07c816 100755 --- a/bin/reproducible_stats.sh +++ b/bin/reproducible_stats.sh @@ -40,6 +40,8 @@ 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\"") + # remove epoch + VERSION=$(echo $VERSION | cut -d ":" -f2) htmlecho "<a href=\"$JENKINS_URL/userContent/diffp/${PKG}_${VERSION}.diffp.log\">$PKG </a> " done htmlecho "</code></p>" |