Revision: 38
http://amavisadmin.svn.sourceforge.net/amavisadmin/?rev=38&view=rev
Author: streindl
Date: 2007-01-21 06:52:36 -0800 (Sun, 21 Jan 2007)
Log Message:
-----------
Wrong tag recognition
Modified Paths:
--------------
amavisadmin/branches/alpha2/tools/reposInfo.pl
Modified: amavisadmin/branches/alpha2/tools/reposInfo.pl
===================================================================
--- amavisadmin/branches/alpha2/tools/reposInfo.pl 2007-01-21 14:48:38 UTC (rev 37)
+++ amavisadmin/branches/alpha2/tools/reposInfo.pl 2007-01-21 14:52:36 UTC (rev 38)
@@ -51,7 +51,7 @@
my $url = $_info->URL;
if ($url =~ /trunk/) {
print "branch=trunk\n";
-} elsif ($url =~ /branches\/([^\/]+)\//) {
+} elsif ($url =~ /branches\/([^\/]+)/) {
print "branch=branch $1\n";
} elsif ($url =~ /tags\/([^\/]+)\//) {
print "branch=$1\n";
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|