Revision: 5746
http://squirrel-sql.svn.sourceforge.net/squirrel-sql/?rev=5746&view=rev
Author: manningr
Date: 2010-07-21 00:00:50 +0000 (Wed, 21 Jul 2010)
Log Message:
-----------
Be a little more efficient when adding a directory tree to subversion (if the dir has .svn directory under it, then it is already under subversion control).
Modified Paths:
--------------
trunk/mavenize/mavenize.pl
Modified: trunk/mavenize/mavenize.pl
===================================================================
--- trunk/mavenize/mavenize.pl 2010-07-20 22:44:58 UTC (rev 5745)
+++ trunk/mavenize/mavenize.pl 2010-07-21 00:00:50 UTC (rev 5746)
@@ -452,7 +452,7 @@
sub svnmkdir {
my $absolutepath = shift;
- if (exists($svnmkdirpaths{$absolutepath})) {
+ if (exists($svnmkdirpaths{$absolutepath}) || -d "$absolutepath/.svn") {
return;
} else {
print "svnmkdir: $absolutepath\n";
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|