diff options
author | Francis Rowe <info@gluglug.org.uk> | 2015-08-30 22:02:25 +0100 |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-08-30 22:02:25 +0100 |
commit | 15bed20e8eb3e212daf9752b42ea568d4f186f0c (patch) | |
tree | 1f68e28e41bc6ab8dab92849e6d697b34f4cedea | |
parent | 6ac7bc90f8671e1b0b85c6c71c609060e4b1cd83 (diff) | |
download | librebootfr-15bed20e8eb3e212daf9752b42ea568d4f186f0c.tar.gz librebootfr-15bed20e8eb3e212daf9752b42ea568d4f186f0c.zip |
grub.cfg: add missing end quote
-rw-r--r-- | resources/grub/config/menuentries/common.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/grub/config/menuentries/common.cfg b/resources/grub/config/menuentries/common.cfg index fbe46218..f54ab5f6 100644 --- a/resources/grub/config/menuentries/common.cfg +++ b/resources/grub/config/menuentries/common.cfg @@ -126,7 +126,7 @@ menuentry 'Search for GRUB configuration (grub.cfg) outside of CBFS' { for j in 1 2 3 4 5 6 7 8 9; do x="(${i},${j})" for p in "grub" "boot/grub" "grub2" "boot/grub2"; do - if [ -f "${x}/${p}/grub.cfg ] ; then + if [ -f "${x}/${p}/grub.cfg" ] ; then root=$2 submenu "Load Config from ${x}" ${x} { source /${p}/grub.cfg |