added check for .git above current dir
authorFred Hamster <fred@gruntose.com>
Fri, 10 Jan 2025 16:01:42 +0000 (11:01 -0500)
committerFred Hamster <fred@gruntose.com>
Fri, 10 Jan 2025 16:01:42 +0000 (11:01 -0500)
scripts/rev_control/version_control.sh

index 2ad76f23f9188e2a151fb189d95184227ca20de5..3ed09da174b4b5bc9dfc32df23d5595b40d95e37 100644 (file)
@@ -515,6 +515,8 @@ function puff_out_list()
 
 # provides a list of absolute paths of revision control directories
 # that are located under the directory passed as the first parameter.
+# if this does not result in any directories being found, then a recursive
+# upwards search is done for git repos, which wants the .git directory.
 function generate_rev_ctrl_filelist()
 {
   local dir="$1"; shift
@@ -530,7 +532,6 @@ function generate_rev_ctrl_filelist()
 
   find $dirhere -follow -maxdepth $MAX_DEPTH -type d -iname ".git" -exec echo {}/.. ';' >>$tempfile 2>/dev/null
 
-
   # CVS is not well behaved like git and (now) svn, and we seldom use it anymore.
   popd &>/dev/null
 
@@ -539,6 +540,12 @@ function generate_rev_ctrl_filelist()
     sed -i -e '/.*\/vendor\/.*/d' "$tempfile"
   fi
 
+  # check if we got any matches.  if this is empty, we'll try our last ditch approach
+  # of searching above here for .git directories.
+  if [ ! -s "$tempfile" ]; then
+    seek_writable ".git" "up" >>$tempfile 2>/dev/null
+  fi
+
   local sortfile=$(mktemp /tmp/zz_checkin_sort.XXXXXX)
   sort <"$tempfile" >"$sortfile"
   echo "$sortfile"