diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2003-04-06 05:42:41 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2003-04-06 05:42:41 +0000 |
commit | 393bb456a9301609cd57a27d3c3c54c5fe544c6b (patch) | |
tree | 00d267778ff49e4d91423605c7b8fc03ec5553ad /Tools | |
parent | Zap some old/non-useful code (diff) |
Update sed pattern used to process logs
Notes
Notes:
svn path=/head/; revision=78394
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/portbuild/scripts/processlogs2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/portbuild/scripts/processlogs2 b/Tools/portbuild/scripts/processlogs2 index 0edef4c55511..d28a0426367d 100755 --- a/Tools/portbuild/scripts/processlogs2 +++ b/Tools/portbuild/scripts/processlogs2 @@ -49,7 +49,7 @@ else maints="$maints $maint" echo -n "<a href=\"mailto:$maint\">$maint</a>" >>$of echo "</td><td valign=\"top\">" >>$of - for file in $(cat $log.log | sed -e '1,/^list of extra files and directories/d' -e '/^list of all files and directories/,$d' -e '/^ /d' -e 's/^extra: //' -e 's/^missing: //' -e 's/://' | awk '{print $1}'); do + for file in $(cat $log.log | sed -e '1,/^list of extra files and directories/d' -e '/^=======/,$d' -e '/^ /d' -e 's/^extra: //' -e 's/^missing: //' -e 's/://' | awk '{print $1}'); do echo "$file<br>" >>$of done echo "</td></tr>" >>$of |