summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKlemens Nanni <klemens@posteo.de>2015-08-29 13:36:11 (EDT)
committer Francis Rowe <info@gluglug.org.uk>2015-08-29 13:36:11 (EDT)
commit47dc32fb4a0170956e5b9dd33ff6e2447b9f977c (patch)
tree77e93e8a36b9c4680263b0a0e7805e1cd5f322ba
parent8419c163e6381390c5508249e9c9b81f75a3a266 (diff)
downloadlibreboot-47dc32fb4a0170956e5b9dd33ff6e2447b9f977c.zip
libreboot-47dc32fb4a0170956e5b9dd33ff6e2447b9f977c.tar.gz
libreboot-47dc32fb4a0170956e5b9dd33ff6e2447b9f977c.tar.bz2
grub.cfg: fix indentation on if statement
-rw-r--r--resources/grub/config/menuentries/common.cfg2
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/grub/config/menuentries/common.cfg b/resources/grub/config/menuentries/common.cfg
index 45f2bd7..fbe4621 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