cvs: SVNROOT / run-conversion.php
[email protected] ("Gwynne Raskind") Thu, 09 Jul 2009 07:34:57 -0000
| Newsgroups | svn.migration |
|---|---|
| Message-ID | <cvsgwynne1247124897@cvsserver> |
gwynne Thu Jul 9 07:34:57 2009 UTC
Modified files:
/SVNROOT run-conversion.php
Log:
bail on unknown CVS modules
http://cvs.php.net/viewvc.cgi/SVNROOT/run-conversion.php?r1=1.73&r2=1.74&diff_format=u
Index: SVNROOT/run-conversion.php
diff -u SVNROOT/run-conversion.php:1.73 SVNROOT/run-conversion.php:1.74
--- SVNROOT/run-conversion.php:1.73 Thu Jul 9 02:28:17 2009
+++ SVNROOT/run-conversion.php Thu Jul 9 07:34:57 2009
@@ -7,7 +7,7 @@
// -----------------------------------------------------------------------------------------------------------------------------
// Constants
-$version = substr('$Revision: 1.73 $', strlen('$Revision: '), -2);
+$version = substr('$Revision: 1.74 $', strlen('$Revision: '), -2);
$passes = array(
'svncreate', // Create various SVN repositories
@@ -427,7 +427,7 @@
$converter->addCVSModule("phpdoc/{$dest_cvs_module}");
// All other modules go into cvs/<module>. There shouldn't be any of these.
} else {
- $converter->addCVSModule($cvs_module);
+ error("UNCAUGHT CVS MODULE \"{$cvs_module}\" - BAILING\n");
}
}