Module: tools Branch: master Commit: 775a554f3f83647e0a16417317bfbd0962c6dfe7 URL: http://source.winehq.org/git/tools.git/?a=commit;h=775a554f3f83647e0a1641731...
Author: Francois Gouget fgouget@free.fr Date: Fri Mar 14 17:24:01 2008 +0100
winetest: Strip the LF from the winetest URL. Fixes an HTML warning.
---
winetest/gather | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/winetest/gather b/winetest/gather index bda1f95..c9e490a 100755 --- a/winetest/gather +++ b/winetest/gather @@ -97,7 +97,7 @@ foreach my $file (glob "$datadir/$build/*/summary.txt") { close TEST; next; } - if (($url = <TEST>) !~ s/^Archive: (.*)$/$1/) { + if (($url = <TEST>) !~ s/^Archive: (.*)\n$/$1/) { print "$file: wrong archive url: $_"; close TEST; next;