Fix more bugs
This commit is contained in:
parent
f020f8c359
commit
0d65676e80
|
@ -157,7 +157,7 @@ formatPart() {
|
||||||
mountPart() {
|
mountPart() {
|
||||||
mount "$rootPart" /mnt 2>&1 | debug
|
mount "$rootPart" /mnt 2>&1 | debug
|
||||||
if [ $autoSelection = false ]; then
|
if [ $autoSelection = false ]; then
|
||||||
result=$(dialog --title "Select where to mount boot partition." --menu "" 0 45 1 "/boot/efi" "" "/boot" "" "==OTHER==" "" 3>&1 1>&2 2>&3)
|
result=$(dialog --menu "\nSelect where to mount the boot partition." 0 30 4 "/boot/efi" "" "/boot" "" "==OTHER==" "" 3>&1 1>&2 2>&3)
|
||||||
exitIfCancel "You must select a path."
|
exitIfCancel "You must select a path."
|
||||||
bootPath=$(echo "$result" | sed 's/^\///g')
|
bootPath=$(echo "$result" | sed 's/^\///g')
|
||||||
if [ "$result" = "OTHER" ]; then
|
if [ "$result" = "OTHER" ]; then
|
||||||
|
|
Loading…
Reference in New Issue