summaryrefslogtreecommitdiff
path: root/Tools
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2003-10-13 06:33:04 +0000
committerKris Kennaway <kris@FreeBSD.org>2003-10-13 06:33:04 +0000
commita36c5cd9ad496dbf2c24f004c089e138b82c7380 (patch)
treef75a48fb9e1d5d58235d9308e787b7375d08116b /Tools
parentUpdate to 2.1.21. (diff)
Condense the table a bit
Notes
Notes: svn path=/head/; revision=90994
Diffstat (limited to 'Tools')
-rwxr-xr-xTools/portbuild/scripts/processfail6
1 files changed, 3 insertions, 3 deletions
diff --git a/Tools/portbuild/scripts/processfail b/Tools/portbuild/scripts/processfail
index 570afcb539c0..a68f9c839df9 100755
--- a/Tools/portbuild/scripts/processfail
+++ b/Tools/portbuild/scripts/processfail
@@ -44,7 +44,7 @@ footer() {
#
# Create "default" output, sorted on portname
#
-header "<th>Port</th><th>Package</th><th>Broken</th><th>Last</th><th>Count</th>"
+header "<th>Port</th><th>Package</th><th>Broken</th><th>Last</th><th>#</th>"
sort -r -n -k 4 -t \| failure > newfailure
IFS='|'
@@ -58,8 +58,8 @@ while read dir name ver date last count; do
# echo "<td><a href=\"mailto:$6\">$6</a></td>" >> $of
# echo "<td>" >> $of
- alphadate=$(date -jf %s ${date})
- alphalast=$(date -jf %s ${last})
+ alphadate=$(date -jf %s ${date} "+%F %T")
+ alphalast=$(date -jf %s ${last} "+%F %T")
echo "<td>${alphadate}</td>" >> $of
echo "<td>${alphalast}</td>" >> $of
echo "<td>$count</td>" >> $of