one level deeper, and now i hit everything i tend to have under my home.
authorChris Koeritz <fred@gruntose.com>
Fri, 6 Sep 2013 16:02:40 +0000 (12:02 -0400)
committerChris Koeritz <fred@gruntose.com>
Fri, 6 Sep 2013 16:02:40 +0000 (12:02 -0400)
scripts/rev_control/version_control.sh

index e96af846e291aca24d97f1ec9f125a6938615cc7..a238cae2480d7cc3e814e7486c2a529ae62047e9 100644 (file)
@@ -247,10 +247,9 @@ function generate_rev_ctrl_filelist()
   local dirhere="$(\pwd)"
   local tempfile=$(mktemp /tmp/zz_rev_checkin.XXXXXX)
   echo >$tempfile
-  find $dirhere -maxdepth 4 -type d -iname ".svn" -exec echo {}/.. ';' >>$tempfile
-  find $dirhere -maxdepth 4 -type d -iname ".git" -exec echo {}/.. ';' >>$tempfile
-#CVS is not well behaved, and we seldom use it anymore.
-#  find $dirhere -maxdepth 3 -type d -iname "CVS" -exec echo {}/.. ';' >>$tempfile
+  find $dirhere -maxdepth 5 -type d -iname ".svn" -exec echo {}/.. ';' >>$tempfile
+  find $dirhere -maxdepth 5 -type d -iname ".git" -exec echo {}/.. ';' >>$tempfile
+  # CVS is not well behaved like git and (now) svn, and we seldom use it anymore.
   popd &>/dev/null
   echo "$tempfile"
 }