changed to mainstream spelling for writable
authorFred T. Hamster <fred@gruntose.com>
Thu, 9 Jan 2025 05:01:26 +0000 (00:01 -0500)
committerFred T. Hamster <fred@gruntose.com>
Thu, 9 Jan 2025 05:01:26 +0000 (00:01 -0500)
scripts/core/functions.sh
scripts/rev_control/version_control.sh

index 9a1605d9d02b9bc73593ba076f11f5366343fcbc..b1c7c9031fe2cbffbee6ad77ff2851543cf38800 100644 (file)
@@ -948,14 +948,14 @@ return 0
   }
 
   # makes sure that the provided "folder" is a directory and is writable.
-  function test_writeable()
+  function test_writable()
   {
     local folder="$1"; shift
     if [ ! -d "$folder" -o ! -w "$folder" ]; then return 1; fi
     return 0
   }
 
-  # seek_writeable:
+  # seek_writable:
   # examines the provided "folder" name to test whether it is a directory
   # and is writable.  zero (success) is returned if the folder is found.
   # if the folder is not found, and the second parameter passed is "up",
@@ -971,7 +971,7 @@ return 0
   # directory name to be sought in the current directory or above.  but if the
   # folder has a full path with slashes, then the most basenamey directory
   # component is considered the directory to locate.
-  function seek_writeable()
+  function seek_writable()
   {
 #hmmm: ever any use to search downwards?  sure there is. ==> currently not supported, but should be.
     local folder="$1"; shift
index 2c4934f30d471cf7887f26409e9422c2af21f073..30f0c14fc1c7b7aacc9b26196edf3fc0bc2d17e7 100644 (file)
@@ -74,7 +74,7 @@ function do_revctrl_checkin()
 
   pushd "$directory" &>/dev/null
   if [ -d "CVS" ]; then
-    if test_writeable "CVS"; then
+    if test_writable "CVS"; then
       do_revctrl_simple_update "$directory"
       exit_on_error "updating repository; this issue should be fixed before check-in."
       if [ -f "$NO_CHECKIN" ]; then
@@ -87,7 +87,7 @@ function do_revctrl_checkin()
       fi
     fi
   elif [ -d ".svn" ]; then
-    if test_writeable ".svn"; then
+    if test_writable ".svn"; then
       do_revctrl_simple_update "$directory"
       exit_on_error "updating repository; this issue should be fixed before check-in."
       if [ -f "$NO_CHECKIN" ]; then
@@ -99,10 +99,10 @@ function do_revctrl_checkin()
         exit_on_error "svn checkin"
       fi
     fi
-  elif [ ! -z "$(seek_writeable ".git" "up")" ]; then
+  elif [ ! -z "$(seek_writable ".git" "up")" ]; then
 #-d ".git" ]; then
 echo into git case.
-    topdir="$(seek_writeable ".git" "up")"
+    topdir="$(seek_writable ".git" "up")"
 echo "got topdir from seeking of '$topdir'"
     if [ ! -z "$topdir" ]; then
 
@@ -417,21 +417,21 @@ function do_revctrl_simple_update()
 
   pushd "$directory" &>/dev/null
   if [ -d "CVS" ]; then
-    if test_writeable "CVS"; then
+    if test_writable "CVS"; then
       $blatt_report
       cvs update . | $TO_SPLITTER
       promote_pipe_return 0
       exit_on_error "cvs update"
     fi
   elif [ -d ".svn" ]; then
-    if test_writeable ".svn"; then
+    if test_writable ".svn"; then
       $blatt_report
       svn update . | $TO_SPLITTER
       promote_pipe_return 0
       exit_on_error "svn update"
     fi
   elif [ -d ".git" ]; then
-    if test_writeable ".git"; then
+    if test_writable ".git"; then
       $blatt_report
       git pull --tags 2>&1 | grep -v "X11 forwarding request failed" | $TO_SPLITTER
       promote_pipe_return 0