From 2641baf1ce203722fe9c864489d95e618c999c53 Mon Sep 17 00:00:00 2001
From: Holden Rohrer
Date: Sat, 18 Apr 2020 20:18:30 -0400
Subject: properly obtained UUID
---
install.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/install.sh b/install.sh
index 2b6caf7..729e6d8 100755
--- a/install.sh
+++ b/install.sh
@@ -42,7 +42,7 @@ if [ ! -e installed ]; then
pacstrap /mnt base || exit 1
genfstab -U /mnt >> /mnt/etc/fstab
- sed "s|%%UUID%%|$(blkid ${PART}2)|" src/etc/default/grub.orig > src/etc/default/grub
+ sed "s|%%UUID%%|$(blkid -o value -s UUID ${PART}2)|" src/etc/default/grub.orig > src/etc/default/grub
touch installed
else
cryptsetup open ${PART}2 cryptlvm
--
cgit