still seeking weird issue for update
authorFred Hamster <fred@gruntose.com>
Wed, 15 Jan 2025 15:46:21 +0000 (10:46 -0500)
committerFred Hamster <fred@gruntose.com>
Wed, 15 Jan 2025 15:46:21 +0000 (10:46 -0500)
scripts/rev_control/version_control.sh

index faecce611335c53c7373d445ff8f82001ece6122..05ad10ee7836d15ddcdf9c22fd44b94c3fe6b40c 100644 (file)
@@ -100,8 +100,16 @@ echo "calculated nicedir as '$nicedir'"
       fi
     fi
   elif [ -d ".git" -o ! -z "$(seek_writable ".git" "up")" ]; then
-    topdir="$(seek_writable ".git" "up")"
+    # if the simple name exists, use that.  otherwise try to seek upwards for .git folder.
+    if [ -d ".git" ]; then
+      topdir=".git"
+    else
+      topdir="$(seek_writable ".git" "up")"
+    fi
 echo "got topdir from seeking of '$topdir'"
+if [ -z "$topdir" ]; then
+echo "hey, topdir is blank!!!! bad news."
+fi
     if [ ! -z "$topdir" ]; then
 
       # jump to the directory above the .git directory, to make git happy.