turned off debugging
authorFred Hamster <fred@gruntose.com>
Fri, 10 Jan 2025 21:10:09 +0000 (16:10 -0500)
committerFred Hamster <fred@gruntose.com>
Fri, 10 Jan 2025 21:10:09 +0000 (16:10 -0500)
scripts/rev_control/version_control.sh

index 3ed09da174b4b5bc9dfc32df23d5595b40d95e37..1cfc85c6f38c5293c44dafd0f895e2afdb876c36 100644 (file)
@@ -101,7 +101,7 @@ function do_revctrl_checkin()
     fi
   elif [ ! -z "$(seek_writable ".git" "up")" ]; then
     topdir="$(seek_writable ".git" "up")"
-echo "got topdir from seeking of '$topdir'"
+#echo "got topdir from seeking of '$topdir'"
     if [ ! -z "$topdir" ]; then
 
       # jump to the directory above the .git directory, to make git happy.
@@ -570,7 +570,7 @@ function perform_revctrl_action_on_file()
     pushd "$dirname" &>/dev/null
     echo -n "[$(pwd)]  "
     # pass the current directory plus the remaining parameters from function invocation.
-echo "about to get active with: '$action .'"
+#echo "about to get active with: '$action .'"
     $action . 
     local retval=$?
     if [ $retval -ne 0 ]; then