commit 7f81dc56ebcc19d59fab9316fa4684cacd2148da
parent 001808750666dc3acfb72b47059d085c64cb2f2d
Author: awy <awy@awy.one>
Date: Thu, 10 Apr 2025 17:32:39 +0300
fix flag
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/post_chroot.sh b/post_chroot.sh
@@ -42,7 +42,7 @@ binkernel()
2) pacman -S linux-zen-headers --noconfirm ;;
*) printf "Invalid kernel" && exit 1 ;;
esac
- sed "s#GRUB_TIMEOUT=.*#GRUB_TIMEOUT=1#g" /etc/default/grub
+ sed -i "s#GRUB_TIMEOUT=.*#GRUB_TIMEOUT=1#g" /etc/default/grub
grub-install --target=x86_64-efi --efi-directory=/boot --bootloader-id=grub
}