fiddling with current dir
authorFred T. Hamster <fred@gruntose.com>
Fri, 17 Jan 2025 21:45:41 +0000 (16:45 -0500)
committerFred T. Hamster <fred@gruntose.com>
Fri, 17 Jan 2025 21:45:41 +0000 (16:45 -0500)
scripts/rev_control/version_control.sh

index 05ad10ee7836d15ddcdf9c22fd44b94c3fe6b40c..b0bccc896972e55b66c6aac87ce01f94c5e81924 100644 (file)
@@ -102,7 +102,8 @@ echo "calculated nicedir as '$nicedir'"
   elif [ -d ".git" -o ! -z "$(seek_writable ".git" "up")" ]; then
     # if the simple name exists, use that.  otherwise try to seek upwards for .git folder.
     if [ -d ".git" ]; then
-      topdir=".git"
+      directory="$( \cd . && /bin/pwd )"
+      topdir="$directory/.git"
     else
       topdir="$(seek_writable ".git" "up")"
     fi
@@ -113,10 +114,14 @@ fi
     if [ ! -z "$topdir" ]; then
 
       # jump to the directory above the .git directory, to make git happy.
+echo "pushing this dir: $topdir/.."
       pushd "$topdir/.." &>/dev/null
+newdir="$( \cd . && /bin/pwd )"
+echo "now dir is set to $newdir"
 
+#is this right now?
       # take steps to make sure the branch integrity is good and we're up to date against remote repos.
-      do_revctrl_careful_update "$topdir"
+      do_revctrl_careful_update "$topdir/.."
 
       if [ -f "$NO_CHECKIN" ]; then
         $tell_no_checkin