Update partDisks function

This commit is contained in:
Santiago Lo Coco 2021-12-22 16:13:30 -03:00
parent 95197fc86c
commit 239e7374a1
1 changed files with 2 additions and 1 deletions

View File

@ -30,8 +30,9 @@ showDisks() {
partDisks() {
showDisks
clear
result=$(whiptail --yesno "Do you want me to automatically partition and format the disk for you?" 0 0)
if [ $result -eq 1 ]; then
if [ $? -eq 1 ]; then
gdisk $disk
return
fi