From 0e3e18b0f43a2a21d1fe9cdf9999a068d8a007c7 Mon Sep 17 00:00:00 2001 From: Tommaso Chiti Date: Sun, 31 Jan 2021 21:57:34 +0100 Subject: [PATCH] Update easy-arch.sh Removed an lsblk option. --- easy-arch.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/easy-arch.sh b/easy-arch.sh index 0a357f6..0c06362 100644 --- a/easy-arch.sh +++ b/easy-arch.sh @@ -8,7 +8,7 @@ timedatectl set-ntp true # Selecting the target for the installation. echo "Select the disk where Arch Linux is going to be installed." -select ENTRY in $(lsblk -dpn -I 8 -oNAME); +select ENTRY in $(lsblk -dpn -oNAME); do DISK=$ENTRY echo "Installing Arch Linux on $DISK." @@ -168,4 +168,4 @@ systemctl enable NetworkManager --root=/mnt # Unmounting partitions. umount -R /mnt echo "Done." -exit \ No newline at end of file +exit