updated to scour the proper area with zapdirs.
[feisty_meow.git] / scripts / text / differ.pl
index d22b3180f3f2d9cd1db3bccb266a267694b56d10..cd1c3353ea50f47d4ef47ef1c4db007939019cd4 100644 (file)
@@ -74,6 +74,7 @@ sub recurse_dirs
   local($src, $dest) = @_;
 
   if ($src =~ /\/CVS$/) { return; }  # skip comparing repositories.
+#hmmm: why is only CVS spelled out here?  what about the others?
 
   if (! -d $src) {
     print "$src is not a directory.\n";
@@ -106,7 +107,7 @@ sub recurse_dirs
     &diff_dirs($dest, $src);
   } else {
     print "$break_line\n";
-    print "Source exists at \"$src\", but target does not.\n";
+    print "Source directory has \"$src\", but target does not.\n";
   }
 
   # iterate through the directory.
@@ -116,7 +117,9 @@ sub recurse_dirs
 #    print "name is $name and to compare is $compare_name.\n";
     local($new_name) = $src . "/" . $name;
     if ( (-d $new_name) && ($name ne ".") && ($name ne "..")
-        && ($name ne ".svn") ) {
+        && ($name ne ".svn") 
+        && ($name ne ".git") 
+        && ($name ne "CVS") ) {
 #      print "recursing on: source $name and destination $compare_name.\n";
       &recurse_dirs($new_name, $compare_name);
     }