less ambitious array operations -- for improved compatibility with older versions of bash;
authorwenzelm
Sat, 22 Aug 2009 22:31:00 +0200
changeset 32391 5b9d7e578756
parent 32390 468eff174a77
child 32392 d8551606fbab
less ambitious array operations -- for improved compatibility with older versions of bash;
lib/Tools/findlogics
--- a/lib/Tools/findlogics	Sat Aug 22 17:08:06 2009 +0200
+++ b/lib/Tools/findlogics	Sat Aug 22 22:31:00 2009 +0200
@@ -34,7 +34,7 @@
   do
     if [ -f "$FILE" ]; then
       NAME=$(basename "$FILE")
-      LOGICS+=("$NAME")
+      LOGICS["${#LOGICS[@]}"]="$NAME"
     fi
   done
 done