diff options
author | Holger Levsen <holger@layer-acht.org> | 2014-10-07 19:03:58 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2014-10-07 19:04:52 +0200 |
commit | 6aa1e199b50a8bf2debcb83929a479a17b20d533 (patch) | |
tree | 17baded22e04c0ac4baf63e7e54357956aeba383 /bin | |
parent | 87e4d30a3730ccfb1eedf2918cf6002c028e6cea (diff) | |
download | jenkins.debian.net-6aa1e199b50a8bf2debcb83929a479a17b20d533.tar.xz |
reproducible: fix typos
Diffstat (limited to 'bin')
-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 d36721e6..f330a7bb 100755 --- a/bin/reproducible_stats.sh +++ b/bin/reproducible_stats.sh @@ -21,7 +21,7 @@ declare -A UGLY declare -A SOURCELESS declare -A NOTFORUS LAST24="AND build_date > datetime('now', '-24 hours') " -LAST48="AND build_date > datetime('now', '-24 hours') " +LAST48="AND build_date > datetime('now', '-48 hours') " SUITE=sid AMOUNT=$(sqlite3 -init $INIT $PACKAGES_DB "SELECT amount FROM source_stats WHERE suite = \"$SUITE\"" | xargs echo) GOOD["all"]=$(sqlite3 -init $INIT $PACKAGES_DB "SELECT name FROM source_packages WHERE status = \"reproducible\" ORDER BY name" | xargs echo) @@ -191,7 +191,7 @@ for VIEW in $ALLVIEWS ; do write_summary "<p><pre>$(echo ${BAD[$VIEW]} | dd-list -i) </pre></p>" write_summary "<hr/><p><font size='-1'><a href=\"$JENKINS_URL/userContent/reproducible.html\">Static URL for this page.</a> Last modified: $(date). Copyright 2014 <a href=\"mailto:holger@layer-acht.org\">Holger Levsen</a>, GPL-2 licensed. <a href=\"https://jenkins.debian.net/userContent/about.html\">About jenkins.debian.net</a></font>" write_summary "</p></body></html>" -fi +done echo # job output |