better output yet
authorChris Koeritz <fred@gruntose.com>
Sun, 20 May 2018 14:58:21 +0000 (10:58 -0400)
committerChris Koeritz <fred@gruntose.com>
Sun, 20 May 2018 14:58:21 +0000 (10:58 -0400)
previous check-in removed the separators which had proven to be annoying.  this one gets the spacing right for the retrieval and then check-in logging.

scripts/rev_control/checkin.sh
scripts/rev_control/version_control.sh

index 0ecd4fee90a577d03c3164fbc6a3c37fdeda50a1..5519f68bd13f2d928f00502935dfeb8e1c6b07e6 100644 (file)
@@ -8,7 +8,6 @@ source "$FEISTY_MEOW_SCRIPTS/rev_control/version_control.sh"
 ##############
 
 echo "committing repositories at: $(date)"
-echo
 
 FULL_LIST=" $(dirname $FEISTY_MEOW_APEX) $HOME "
 if [ "$OS" == "Windows_NT" ]; then
index 3016a77ce7e288081a6e9e1ae436d26100184a4f..9b9704c286b0d82ad27c570636008e01ba91ea2d 100644 (file)
@@ -90,7 +90,7 @@ function do_checkin()
   local blatt="echo -ne \nchecking in '$nicedir'...  "
 
   do_update "$directory"
-  exit_on_error "repository update--this should be fixed before check-in."
+  exit_on_error "updating repository; this issue should be fixed before check-in."
 
   pushd "$directory" &>/dev/null
   if [ -f ".no-checkin" ]; then
@@ -371,6 +371,7 @@ function do_careful_git_update()
   if [ ! -d ".git" ]; then
     # not a git project, so just boil this down to a getem action.
     popd &>/dev/null
+echo "special case; not doing careful git update on non git repository: $directory"
     do_update "$directory"
     return $?
   fi
@@ -438,7 +439,7 @@ function do_update()
   if [ $nicedir == "." ]; then
     nicedir=$(\pwd)
   fi
-  local blatt="echo retrieving '$nicedir'..."
+  local blatt="echo -e \nretrieving '$nicedir'..."
 
   pushd "$directory" &>/dev/null
   if [ -d "CVS" ]; then