better capitalization is none
authorChris Koeritz <fred@gruntose.com>
Fri, 30 Dec 2016 05:22:40 +0000 (00:22 -0500)
committerChris Koeritz <fred@gruntose.com>
Fri, 30 Dec 2016 05:22:40 +0000 (00:22 -0500)
scripts/rev_control/checkin.sh
scripts/rev_control/getem.sh
scripts/rev_control/git_info.sh
scripts/rev_control/version_control.sh

index ac0176c7c208b38a8ca18e3050c5fa5f1d3b8c07..78d030657a670a05f3f0558f21ce99f4d90aa7ba 100644 (file)
@@ -7,7 +7,7 @@ source "$FEISTY_MEOW_SCRIPTS/rev_control/version_control.sh"
 
 ##############
 
-echo "Committing repositories at: $(date)"
+echo "committing repositories at: $(date)"
 
 if [ "$OS" != "Windows_NT" ]; then
   # first get individual folders.
index 9da0d4f4a6800fb4f28fb1807ee2187c0b74be2c..983ba7874a9f5da8bc5fe284f12d12ae85f061b6 100644 (file)
@@ -13,7 +13,7 @@ source "$FEISTY_MEOW_SCRIPTS/rev_control/version_control.sh"
 tmpdir="$(cd $TMP; \pwd)"
 if [ "$(\pwd)" != "$tmpdir" ]; then
   if [ ! -z "$SHELL_DEBUG" ]; then
-    echo "Moving to the TMP directory to avoid file access conflicts..."
+    echo "moving to the TMP directory to avoid file access conflicts..."
   fi
   new_name="$TMP/zz_$(basename $0)"
   cp -f "$0" "$new_name"
index 4caf0f49d1d089595b83f61f9bcdb012d4bd8d26..11817c703e708cea7231a61ca326f6fcdbe6df0b 100644 (file)
@@ -32,9 +32,9 @@ echo "== Most Recent Commit"
 git --no-pager log --max-count=1
 echo
  
-echo "Type 'git log' for more commits, or 'git show' for full commit details."
+echo "type 'git log' for more commits, or 'git show' for full commit details."
 else
-echo "Not a git repository."
+echo "not a git repository."
 fi
  
 popd >/dev/null
index 6488ade1b7bc7b1ef69e3abc1c9979c2602f5320..9228d12def3cf23c697d821c4416177f036e9f43 100644 (file)
@@ -21,8 +21,8 @@ if [ ! -d "$TMP" ]; then
   mkdir -p $TMP
 fi
 if [ ! -d "$TMP" ]; then
-  echo "Could not create the temporary directory TMP in: $TMP"
-  echo "This script will not work properly without an existing TMP directory."
+  echo "could not create the temporary directory TMP in: $TMP"
+  echo "this script will not work properly without an existing TMP directory."
 fi
 
 this_host=
@@ -110,13 +110,13 @@ function do_checkin()
   local directory="$1"; shift
   do_update "$directory"
   if [ $? -ne 0 ]; then
-    echo "Repository update failed; this should be fixed before check-in."
+    echo "repository update failed; this should be fixed before check-in."
     return 1
   fi
   pushd "$directory" &>/dev/null
   local retval=0  # normally successful.
   if [ -f ".no-checkin" ]; then
-    echo "Skipping check-in due to presence of .no-checkin sentinel file."
+    echo "skipping check-in due to presence of .no-checkin sentinel file."
   elif [ -d "CVS" ]; then
     cvs ci .
     retval=$?
@@ -168,7 +168,7 @@ function do_report_new
 
   # only update if we see a repository living there.
   if [ -f ".no-checkin" ]; then
-    echo "Skipping reporting due to presence of .no-checkin sentinel file."
+    echo "skipping reporting due to presence of .no-checkin sentinel file."
   elif [ -d ".svn" ]; then
     # this action so far only makes sense and is needed for svn.
     bash $FEISTY_MEOW_SCRIPTS/rev_control/svnapply.sh \? echo
@@ -252,7 +252,7 @@ function checkout_list {
       j="$i/$j"
       if [ ! -d $j ]; then
         if [ ! -z "$SHELL_DEBUG" ]; then
-          echo "No directory called $j exists."
+          echo "no directory called $j exists."
         fi
         continue
       fi