From: Michael Prokop Date: Thu, 31 Oct 2013 07:43:42 +0000 (+0100) Subject: Fix typo in /boot/grub/addons.cfg filename X-Git-Tag: v0.14.2~1 X-Git-Url: http://git.grml.org/?p=grml2usb.git;a=commitdiff_plain;h=1d2aba6b461908251a2ac45fcd24a40861cccba0 Fix typo in /boot/grub/addons.cfg filename /boot/grub/adddons.cfg should be /boot/grub/addons.cfg of course instead Thanks: Michael Schierl for the hint --- diff --git a/grml2usb b/grml2usb index 4e958b5..be6b227 100755 --- a/grml2usb +++ b/grml2usb @@ -978,7 +978,7 @@ def build_loopbackcfg(target): logging.debug("Found source file" + sourcefile) os.path.isfile(ops) and f.write("source " + sourcefile + "\n") - f.write("source /boot/grub/adddons.cfg\n") + f.write("source /boot/grub/addons.cfg\n") f.write("source /boot/grub/footer.cfg\n") f.close()