diff --git a/install.sh b/install.sh index cdd3735..c73538a 100755 --- a/install.sh +++ b/install.sh @@ -68,8 +68,8 @@ parted -s "$DISK" \ set 1 esp on \ mkpart cryptroot 101MiB 100% \ -ESP="/dev/disk/by-partlabel/ESP" -cryptroot="/dev/disk/by-partlabel/cryptroot" +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-) # Informing the Kernel of the changes. echo "Informing the Kernel about the disk changes."