1
0
mirror of https://github.com/tommytran732/Arch-Setup-Script synced 2024-11-09 12:11:33 -05:00

Update easy-arch.sh

Removed an lsblk option.
This commit is contained in:
Tommaso Chiti 2021-01-31 21:57:34 +01:00 committed by GitHub
parent 17af10cb64
commit 0e3e18b0f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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
exit