From 009ec57835d719e7cc9e8fb961223aa62aa3ced2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Stefanik?= Date: Tue, 6 Feb 2024 19:22:35 +0100 Subject: [PATCH] Fix typo in make_bootable.sh causing failure to reboot --- steps/improve/make_bootable.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/steps/improve/make_bootable.sh b/steps/improve/make_bootable.sh index 8211296..c9e9d49 100644 --- a/steps/improve/make_bootable.sh +++ b/steps/improve/make_bootable.sh @@ -26,7 +26,7 @@ set timeout=5 set default=0 menuentry 'Linux live-bootstrap (4.9.10)' { insmod part_msdos - set root='grub-probe -d /dev/${DISK} -t bios_hints | sed -e 's/ //g')' + set root='$(grub-probe -d /dev/${DISK} -t bios_hints | sed -e 's/ //g')' linux /boot/linux-4.9.10 root=/dev/${DISK} rw $(cat /proc/cmdline) } EOF