From: Michael Prokop Date: Fri, 7 Feb 2014 17:37:01 +0000 (+0100) Subject: Fix logic of isohybrid execution if uefi option is not supported X-Git-Tag: v0.14.3~1 X-Git-Url: http://git.grml.org/?p=grml2usb.git;a=commitdiff_plain;h=6bf0be8743701d0c583e1d3025ec8b9ddf062397 Fix logic of isohybrid execution if uefi option is not supported This fixes a problem which makes all 32bit Grml systems unbootable via grml2iso because uefi isn't supported there. --- diff --git a/grml2iso b/grml2iso index a3bab29..43f57c1 100755 --- a/grml2iso +++ b/grml2iso @@ -293,10 +293,10 @@ Options: echo "isohybrid version supports --uefi option" ISOHYBRID_OPTIONS=--uefi fi - - echo "Creating dd-able ISO using isohybrid" - isohybrid $ISOHYBRID_OPTIONS "$ISOFILE" fi + + echo "Creating dd-able ISO using isohybrid" + isohybrid $ISOHYBRID_OPTIONS "$ISOFILE" # }}} # cleanup {{{