From 87eae2a5b35fdf4fb80feec2abef2873cbaf098b Mon Sep 17 00:00:00 2001 From: fawzakin Date: Thu, 2 Sep 2021 17:33:24 +0700 Subject: [PATCH] Fixed sed bug --- easy-arch.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easy-arch.sh b/easy-arch.sh index 264c7f4..f6f9170 100644 --- a/easy-arch.sh +++ b/easy-arch.sh @@ -180,7 +180,7 @@ sed -i -e 's,modconf block filesystems keyboard,keyboard keymap modconf block en # Setting up LUKS2 encryption and apparmor. UUID=$(blkid $Cryptroot | cut -f2 -d'"') -sed -i "s/quiet/quiet cryptdevice=UUID=$UUID:cryptroot root=$BTRFS/g" /mnt/etc/default/grub +sed -i "s,quiet,quiet cryptdevice=UUID=$UUID:cryptroot root=$BTRFS,g" /mnt/etc/default/grub # Configuring the system. arch-chroot /mnt /bin/bash -e <