From 4dfcda78274f01bd05d24944e38c2fc5048500bf Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Wed, 16 Feb 2022 12:17:08 -0300 Subject: [PATCH] Update common.sh --- scripts/common.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/common.sh b/scripts/common.sh index 42fadc0..de94a1c 100755 --- a/scripts/common.sh +++ b/scripts/common.sh @@ -205,12 +205,12 @@ getListOrMenuOptions() { if [ $notFound = true ]; then [[ "${item}" == "VALUES" ]] && ((i+=3)) [[ "${item}" == +([0-9]) ]] && ((i++)) - [ $i -le 3 ] && continue + [ "$i" -le 3 ] && continue fi notFound=false if [ $((j % 3)) -eq 0 ]; then strLen=${#item} - [ $strLen -gt $maxLen ] && maxLen=$strLen + [ "$strLen" -gt $maxLen ] && maxLen=$strLen ((argsQty++)) [ $isList = false ] && ((j++)) fi