diff options
author | Holger Levsen <holger@layer-acht.org> | 2014-10-01 20:35:59 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2014-10-01 20:35:59 +0200 |
commit | 673de5f8238ef181606f796199643770fbc5ac92 (patch) | |
tree | 4c185ea46d86a9c38b27ac225865c14722314667 | |
parent | 7b63623fb6ce4aa4bc0edbf399f6d65a71c3efe6 (diff) | |
download | jenkins.debian.net-673de5f8238ef181606f796199643770fbc5ac92.tar.xz |
reproducible: improve output
-rwxr-xr-x | bin/reproducible_stats.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_stats.sh b/bin/reproducible_stats.sh index d2d92638..3760f1ec 100755 --- a/bin/reproducible_stats.sh +++ b/bin/reproducible_stats.sh @@ -50,9 +50,9 @@ for PKG in $BAD ; do # remove epoch VERSION=$(echo $VERSION | cut -d ":" -f2) if [ -f "/var/lib/jenkins/userContent/diffp/${PKG}_${VERSION}.diffp.html" ] ; then - htmlecho "<a href=\"$JENKINS_URL/userContent/diffp/${PKG}_${VERSION}.diffp.html\">$PKG </a> " + htmlecho " <a href=\"$JENKINS_URL/userContent/diffp/${PKG}_${VERSION}.diffp.html\">$PKG</a> " else - htmlecho "<a href=\"$JENKINS_URL/userContent/diffp/${PKG}_${VERSION}.diffp.log\">$PKG </a> " + htmlecho " <a href=\"$JENKINS_URL/userContent/diffp/${PKG}_${VERSION}.diffp.log\">$PKG</a> " fi done htmlecho "</code></p>" |