From 4c1a6b75b63ab5f0655bf815e76404faa6e23fdf Mon Sep 17 00:00:00 2001
From: Santiago Lo Coco <santilococo.01@gmail.com>
Date: Sat, 7 Oct 2023 17:37:57 -0300
Subject: [PATCH] Update install.sh

---
 install.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/install.sh b/install.sh
index 805b3eb..00e76c5 100755
--- a/install.sh
+++ b/install.sh
@@ -58,7 +58,7 @@ partDisks() {
         parts=$(lsblk "$disk" -pnl | sed -n '2~1p' | wc -l)
         [ "$parts" -lt 2 ] && printAndExit "You must at least create boot and root partitions."
 
-        # TODO: Ask for home partition
+        # TODO: Ask if the user wants a home partition
         formatOptions <(lsblk "${disk}" -pnlo NAME,SIZE,MOUNTPOINTS | sed -n '2~1p')
         result=$(dialog --menu "\nSelect the boot partition." 0 30 "$parts" "${options[@]}" 3>&1 1>&2 2>&3)
         exitIfCancel "You must select the boot partition."