From 7afe6358c166633cd73ed21c0f2f3d9a21b79fd0 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Sat, 29 Jan 2022 13:25:48 -0300 Subject: [PATCH] Update calcWidth() --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index d3d660f..766b758 100755 --- a/install.sh +++ b/install.sh @@ -362,7 +362,7 @@ calcWidth() { fi ((count++)) done < <(echo -ne "$1") - [ $option -ge $count ] && count=option + [ $option -ge "$count" ] && count=option echo $((count+4)) }