updated a couple checks to accept empty dirs
authorFred Hamster <fred@gruntose.com>
Wed, 15 Jan 2025 14:11:13 +0000 (09:11 -0500)
committerFred Hamster <fred@gruntose.com>
Wed, 15 Jan 2025 14:11:13 +0000 (09:11 -0500)
scripts/rev_control/version_control.sh

index fa2d200c67d5a59fbc4f309903a853c254a084e6..faecce611335c53c7373d445ff8f82001ece6122 100644 (file)
@@ -300,7 +300,7 @@ function show_active_branch()
 #hmmm: if no args, assume current dir!?
 
   for directory in "$@"; do
-    if [ $directory == "." ]; then
+    if [ -z "$directory" -o $directory == "."  ]; then
       directory="$( \cd . && /bin/pwd )"
 #echo "calculated directory as '$directory'"
     fi
@@ -416,7 +416,7 @@ function do_revctrl_simple_update()
 #hmmm: another piece of reusable code, to process the directory for printing.
   # make a nice echoer since we want to use it inside conditions below.
   local nicedir="$directory"
-  if [ $nicedir == "." ]; then
+  if [ -z "$nicedir" -o "$nicedir" == "." ]; then
     nicedir=$(\pwd)
   fi
   local blatt_report="echo -e \nretrieving '$nicedir'..."