From f757185f57c473e5f0eb23d4f9362f93f8877f67 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Sat, 29 Jan 2022 15:42:47 -0300 Subject: [PATCH] Fix lowercase bug --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index ce847cb..a8a81df 100755 --- a/install.sh +++ b/install.sh @@ -99,7 +99,7 @@ partDisks() { if [ $? -eq 0 ]; then result=$(dialog --menu "\nSelect the swap space." 0 26 2 "Partition" "" "Swapfile" "" 3>&1 1>&2 2>&3) exitIfCancel "You must select a swap space." - size=$(getSize "${result:l}") + size=$(getSize "${result,,}") if [ "$result" = "Partition" ]; then swapPart=${disk}2 rootPart=${disk}3