From 59646ee3ebd9b15338ed80d6e405430e086021a7 Mon Sep 17 00:00:00 2001 From: Amy Date: Sun, 28 Nov 2021 12:46:26 +0000 Subject: [PATCH] fix it trying to mount /dev/dev/$(disk) --- citrine.internal.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/citrine.internal.sh b/citrine.internal.sh index b89b559..f941baa 100755 --- a/citrine.internal.sh +++ b/citrine.internal.sh @@ -147,9 +147,9 @@ if [[ "$MANUAL" == "no" ]]; then btrfs subvolume create @home cd / umount /mnt - mount -o subvol=@ /dev/${DISK}p2 /mnt + mount -o subvol=@ ${DISK}p2 /mnt mkdir -p /mnt/{boot/efi,home} - mount -o subvol=@home /dev/${DISK}p2 /mnt/home + mount -o subvol=@home ${DISK}p2 /mnt/home mount ${DISK}p1 /mnt/boot/efi else inf "Initializing ${DISK} as NVME MBR"