From ab56f28a63379622ce2b66e14822ccdc891e364b Mon Sep 17 00:00:00 2001 From: natemaia Date: Wed, 2 Oct 2019 23:01:59 -0700 Subject: [PATCH] Remove similar messages when auto mounting partitions made in part_auto() --- archlabs-installer | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/archlabs-installer b/archlabs-installer index aa46fb3..00a9f96 100755 --- a/archlabs-installer +++ b/archlabs-installer @@ -5,7 +5,7 @@ # Some ideas and code reworked from other resources # AIF, Cnichi, Calamares, Arch Wiki.. Credit where credit is due -VER=2.0.74 +VER=2.0.75 # bulk default values { @@ -1033,7 +1033,6 @@ select_filesystem() select_efi_partition() { if [[ $AUTO_BOOT_PART ]]; then - msg "EFI Boot Partition" "\nUsing partition created during automatic format.\n" 2 BOOT_PART="$AUTO_BOOT_PART" return 0 # were done here else @@ -1072,7 +1071,6 @@ select_efi_partition() select_boot_partition() { if [[ $AUTO_BOOT_PART && ! $LVM ]]; then - msg "Boot Partition" "\nUsing partition created during automatic format.\n" 2 BOOT_PART="$AUTO_BOOT_PART" return 0 # were done here else @@ -1110,7 +1108,7 @@ select_root_partition() { if [[ $AUTO_ROOT_PART && -z $LVM && -z $LUKS ]]; then ROOT_PART="$AUTO_ROOT_PART" - msg "Root Partition (/)" "\nUsing partition created during automatic format.\n" 2 + msg "Mount Menu" "\nUsing partitions created during automatic format.\n" 2 part_mount "$ROOT_PART" || { ROOT_PART=''; return 1; } return 0 # we're done here else -- 2.11.0