From: Michael Prokop Date: Tue, 5 Jun 2007 11:41:22 +0000 (+0200) Subject: Fix two syntax errors X-Git-Tag: 0.10~8 X-Git-Url: https://git.grml.org/?p=grml-debootstrap.git;a=commitdiff_plain;h=1a8351e9b67917b67e235e027c7403b1273f1e86 Fix two syntax errors --- diff --git a/grml-debootstrap b/grml-debootstrap index de15471..01fcfe8 100755 --- a/grml-debootstrap +++ b/grml-debootstrap @@ -96,7 +96,7 @@ while [ "$#" -gt "0" ] ; do ;; -i|--iso) shift - [ -n "$MIRROR"] && unset MIRROR + [ -n "$MIRROR" ] && unset MIRROR ISO=$1 ;; -h|--help) @@ -163,7 +163,7 @@ fi # make sure we have the right syntax when using an iso image case $ISO in file*) # do nothing - ; + ;; *) ISO=file:$1 ;;