X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Frev_control%2Fversion_control.sh;h=9228d12def3cf23c697d821c4416177f036e9f43;hb=3bcb83e182f35554308af3a73665a217859fc875;hp=6488ade1b7bc7b1ef69e3abc1c9979c2602f5320;hpb=077f310e41b5b0f5cd47fd1b523d9a51c9b6ef0b;p=feisty_meow.git 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