added pushd to fix checkin deep in tree
authorFred Hamster <fred@gruntose.com>
Tue, 28 Jan 2025 14:37:32 +0000 (09:37 -0500)
committerFred Hamster <fred@gruntose.com>
Tue, 28 Jan 2025 14:37:32 +0000 (09:37 -0500)
scripts/rev_control/version_control.sh

index d4306e26058b3f60f6d46f6b9a913d036afaa76e..30c9a0ad9f2ae9597520b378ee9791b45db51ea5 100644 (file)
@@ -63,12 +63,7 @@ function do_revctrl_checkin()
 #hmmm: abstract reusable code below that processes the directory name for printing.
   # make a nice echoer since we want to use it inside conditions below.
   local nicedir="$( \cd "$directory" && /bin/pwd )"
-#hmmm: this bit should never fire now.
-##  local nicedir="$directory"
-#  if [ -z "$nicedir" -o $nicedir == "."  ]; then
-#    nicedir="$( \cd . && /bin/pwd )"
-#echo "re-calculated nicedir as '$nicedir'"
-#  fi
+#echo "nicedir into revctrl checkin is '$nicedir'"
 
   # prepare some reporting variables ahead of time.
   local blatt_report="echo -ne \nchecking in '$nicedir'...  "
@@ -115,10 +110,10 @@ function do_revctrl_checkin()
 #fi
     if [ ! -z "$topdir" ]; then
 
-#      # jump to the directory above the .git directory, to make git happy.
+      # 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 )"
+      pushd "$topdir/.." &>/dev/null
+#local newdir="$( \cd . && /bin/pwd )"
 #echo "now dir is set to $newdir"
 
       # take steps to make sure the branch integrity is good and we're up to date against remote repos.
@@ -129,6 +124,9 @@ function do_revctrl_checkin()
       else
         $blatt_report
 
+#local newdir="$( \cd . && /bin/pwd )"
+#echo "dir before checking in is $topdir"
+
         # put all changed and new files in the commit.  not to everyone's liking.
         git add --all . | $TO_SPLITTER
         promote_pipe_return 0