cvs: SVNROOT / run-conversion.php
[email protected] ("Gwynne Raskind")
| Newsgroups | svn.migration |
|---|---|
| Message-ID | <cvsgwynne1228762348@cvsserver> |
gwynne Mon Dec 8 18:52:28 2008 UTC
Modified files:
/SVNROOT run-conversion.php
Log:
Don't convert ignores for tags. It's a huge amount of time spent to little or no benefit.
http://cvs.php.net/viewvc.cgi/SVNROOT/run-conversion.php?r1=1.55&r2=1.56&diff_format=u
Index: SVNROOT/run-conversion.php
diff -u SVNROOT/run-conversion.php:1.55 SVNROOT/run-conversion.php:1.56
--- SVNROOT/run-conversion.php:1.55 Sun Dec 7 22:35:43 2008
+++ SVNROOT/run-conversion.php Mon Dec 8 18:52:28 2008
@@ -7,7 +7,7 @@
// -----------------------------------------------------------------------------------------------------------------------------
// Constants
-$version = substr('$Revision: 1.55 $', strlen('$Revision: '), -2);
+$version = substr('$Revision: 1.56 $', strlen('$Revision: '), -2);
$passes = array(
'processcvs', // Process CVS modules
@@ -414,7 +414,7 @@
rm($coDir);
}
foreach ($itemList as $item) {
- if (substr($item, -1) == '/') {
+ if (substr($item, -1) == '/' && $item != 'tags/') {
array_push($dirStack, "{$curDir}/{$item}");
}
}