diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2003-10-13 06:33:04 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2003-10-13 06:33:04 +0000 |
commit | a36c5cd9ad496dbf2c24f004c089e138b82c7380 (patch) | |
tree | f75a48fb9e1d5d58235d9308e787b7375d08116b /Tools | |
parent | cdeb3a0c0b0adbf01c0c609908bf70069c25ab66 (diff) | |
download | ports-a36c5cd9ad496dbf2c24f004c089e138b82c7380.tar.gz ports-a36c5cd9ad496dbf2c24f004c089e138b82c7380.zip |
Notes
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/portbuild/scripts/processfail | 6 |
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 |