diff options
author | Klemens Nanni <klemens@posteo.de> | 2015-08-29 18:36:11 +0100 |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-08-29 18:36:11 +0100 |
commit | 47dc32fb4a0170956e5b9dd33ff6e2447b9f977c (patch) | |
tree | 77e93e8a36b9c4680263b0a0e7805e1cd5f322ba /resources/grub/config/menuentries | |
parent | 8419c163e6381390c5508249e9c9b81f75a3a266 (diff) | |
download | librebootfr-47dc32fb4a0170956e5b9dd33ff6e2447b9f977c.tar.gz librebootfr-47dc32fb4a0170956e5b9dd33ff6e2447b9f977c.zip |
grub.cfg: fix indentation on if statement
Diffstat (limited to 'resources/grub/config/menuentries')
-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 45f2bd79..fbe46218 100644 --- a/resources/grub/config/menuentries/common.cfg +++ b/resources/grub/config/menuentries/common.cfg @@ -52,7 +52,7 @@ menuentry 'Parse ISOLINUX menu (SATA)' { for p in "/isolinux" "/syslinux"; do if [ -f "${p}${p}.cfg" ] ; then syslinux_configfile -i ${p}${p}.cfg - elif [ -f "/boot${p}${p}.cfg" ] ; then + elif [ -f "/boot${p}${p}.cfg" ] ; then syslinux_configfile -i /boot${p}${p}.cfg fi done |