From df35e5d47eccb8c3ec6c1980c3ec2ffe097add73 Mon Sep 17 00:00:00 2001 From: calvinreu Date: Thu, 2 Jun 2022 09:35:09 +0200 Subject: [PATCH] wrong disk label --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index c73538a..d5a1da1 100755 --- a/install.sh +++ b/install.sh @@ -68,8 +68,8 @@ parted -s "$DISK" \ set 1 esp on \ mkpart cryptroot 101MiB 100% \ -ESP=$(lsblk /dev/$DISK -o NAME,PARTLABEL | grep ESP| cut -d " " -f1 | cut -c7-) -cryptroot=$(lsblk /dev/$DISK -o NAME,PARTLABEL | grep cryptroot | cut -d " " -f1 | cut -c7-) +ESP=$(lsblk $DISK -o NAME,PARTLABEL | grep ESP| cut -d " " -f1 | cut -c7-) +cryptroot=$(lsblk $DISK -o NAME,PARTLABEL | grep cryptroot | cut -d " " -f1 | cut -c7-) # Informing the Kernel of the changes. echo "Informing the Kernel about the disk changes."