From 3bcb83e182f35554308af3a73665a217859fc875 Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Fri, 30 Dec 2016 00:22:40 -0500 Subject: [PATCH] better capitalization is none --- scripts/rev_control/checkin.sh | 2 +- scripts/rev_control/getem.sh | 2 +- scripts/rev_control/git_info.sh | 4 ++-- scripts/rev_control/version_control.sh | 12 ++++++------ 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/scripts/rev_control/checkin.sh b/scripts/rev_control/checkin.sh index ac0176c7..78d03065 100644 --- a/scripts/rev_control/checkin.sh +++ b/scripts/rev_control/checkin.sh @@ -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. diff --git a/scripts/rev_control/getem.sh b/scripts/rev_control/getem.sh index 9da0d4f4..983ba787 100644 --- a/scripts/rev_control/getem.sh +++ b/scripts/rev_control/getem.sh @@ -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" diff --git a/scripts/rev_control/git_info.sh b/scripts/rev_control/git_info.sh index 4caf0f49..11817c70 100644 --- a/scripts/rev_control/git_info.sh +++ b/scripts/rev_control/git_info.sh @@ -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 diff --git a/scripts/rev_control/version_control.sh b/scripts/rev_control/version_control.sh index 6488ade1..9228d12d 100644 --- a/scripts/rev_control/version_control.sh +++ b/scripts/rev_control/version_control.sh @@ -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 -- 2.34.1