From d4c9cd191a503f6edb2435190b80a908fea5e079 Mon Sep 17 00:00:00 2001 From: calvinreu Date: Thu, 2 Jun 2022 09:55:40 +0200 Subject: [PATCH] missing /dev/ added timer --- install.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index d5a1da1..fced5ad 100755 --- a/install.sh +++ b/install.sh @@ -68,8 +68,9 @@ parted -s "$DISK" \ set 1 esp on \ mkpart cryptroot 101MiB 100% \ -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-) +sleep 0.1 +ESP="/dev/$(lsblk $DISK -o NAME,PARTLABEL | grep ESP| cut -d " " -f1 | cut -c7-)" +cryptroot="/dev/$(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."