diff options
author | Mattia Rizzolo <mattia@debian.org> | 2017-01-19 14:30:43 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2017-01-19 14:32:06 +0100 |
commit | e199cfa0174a1421db1489eb135247c0980acc7d (patch) | |
tree | 204ef213aadc3eaa20edb38c444f86778acc26aa | |
parent | 0482c0af81fab771dfe596f43d4d07b5827a5613 (diff) | |
download | jenkins.debian.net-e199cfa0174a1421db1489eb135247c0980acc7d.tar.xz |
reproducible debian: dashboard: fix another typo..
Signed-off-by: Holger Levsen <holger@layer-acht.org>
-rwxr-xr-x | bin/reproducible_html_dashboard.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_html_dashboard.sh b/bin/reproducible_html_dashboard.sh index 107425ed..e6fe61f7 100755 --- a/bin/reproducible_html_dashboard.sh +++ b/bin/reproducible_html_dashboard.sh @@ -303,7 +303,7 @@ _average_builds_per_day() { local OLDEST_BUILD="$(query_db "SELECT build_date FROM stats_build WHERE architecture='$ARCH' ORDER BY build_date ASC LIMIT 1")" local DAY_DIFFS="$(( ($(date -d "$DATE" +%s) - $(date -d "$OLDEST_BUILD" +%s)) / (60*60*24) ))" local DISCLAIMER="" - local TIMESPAN="$TIMESTAN_RAW" + local TIMESPAN="$TIMESPAN_RAW" if [ $DAY_DIFFS -lt $TIMESPAN ]; then # this is a new architecture, there are fewer days to compare to. DISCLAIMER=" <span style=\"font-size: 0.8em;\">(in the last $DAY_DIFFS days)</span>" |