improved look of output from check-ins
authorChris Koeritz <fred@gruntose.com>
Sun, 20 May 2018 14:48:41 +0000 (10:48 -0400)
committerChris Koeritz <fred@gruntose.com>
Sun, 20 May 2018 14:48:41 +0000 (10:48 -0400)
scripts/rev_control/checkin.sh
scripts/rev_control/version_control.sh

index 9bdbe5cf10534452b2aa38a6ae6a63a4b682bb81..0ecd4fee90a577d03c3164fbc6a3c37fdeda50a1 100644 (file)
@@ -16,12 +16,12 @@ if [ "$OS" == "Windows_NT" ]; then
 fi
 
 checkin_list $FULL_LIST
-exit_on_error "checking in list: $FULL_LIST"
+exit_on_error "revision control check-in of list: $FULL_LIST"
 
 ##############
 
-# regenerate the scripts after checking in, since this could mean a modified version
-# of feisty meow is present.
+# regenerate the scripts after the check-in, since an update during check-in
+# could mean we have a modified version of feisty meow is present.
 regenerate
 
 ##############
index cf1af26639d276a7a1cf7c3b336e68647ea6bc1c..3016a77ce7e288081a6e9e1ae436d26100184a4f 100644 (file)
@@ -87,7 +87,7 @@ function do_checkin()
   if [ $nicedir == "." ]; then
     nicedir=$(\pwd)
   fi
-  local blatt="echo -n checking in '$nicedir'...  "
+  local blatt="echo -ne \nchecking in '$nicedir'...  "
 
   do_update "$directory"
   exit_on_error "repository update--this should be fixed before check-in."
@@ -233,7 +233,7 @@ function checkin_list()
       if [ ! -d "$outer" ]; then continue; fi
       do_checkin "$outer"
       exit_on_error "running check-in (absolute) on path: $outer"
-      sep 28
+#      sep 28
     else
       for inner in $list; do
         # add in the directory component to see if we can find the folder.
@@ -241,7 +241,7 @@ function checkin_list()
         if [ ! -d "$path" ]; then continue; fi
         do_checkin "$path"
         exit_on_error "running check-in (relative) on path: $path"
-        sep 28
+#        sep 28
       done
     fi
   done
@@ -273,7 +273,7 @@ function puff_out_list()
       if [ ! -d "$outer" ]; then continue; fi
       do_careful_git_update "$outer"
       exit_on_error "running puff-out (absolute) on path: $outer"
-      sep 28
+#      sep 28
     else
       for inner in $list; do
         # add in the directory component to see if we can find the folder.
@@ -281,7 +281,7 @@ function puff_out_list()
         if [ ! -d "$path" ]; then continue; fi
         do_careful_git_update "$path"
         exit_on_error "running puff-out (relative) on path: $path"
-        sep 28
+#        sep 28
       done
     fi
   done
@@ -493,7 +493,7 @@ function checkout_list()
       if [ ! -d "$outer" ]; then continue; fi
       do_update $outer
       exit_on_error "running update on: $path"
-      sep 28
+#      sep 28
     else
       for inner in $list; do
         # add in the directory component to see if we can find the folder.
@@ -501,7 +501,7 @@ function checkout_list()
         if [ ! -d "$path" ]; then continue; fi
         do_update $path
         exit_on_error "running update on: $path"
-        sep 28
+#        sep 28
       done
     fi
   done
@@ -557,7 +557,7 @@ function perform_revctrl_action_on_file()
     # pass the current directory plus the remaining parameters from function invocation.
     $action . 
     exit_on_error "performing action $action on: $(pwd)"
-    sep 28
+#    sep 28
     popd &>/dev/null
   done 3<"$tempfile"