Warning!

Notice: the grml team is migrating from Mercurial to Git.
Please visit git.grml.org instead!

Fix two syntax errors
authorMichael Prokop <mika@grml.org>
Tue Jun 05 13:41:22 2007 +0200 (18 months ago)
changeset 17488b081098b85
manifest88b081098b85
parent 17338dca99fd879
child 175b2622e830882
Fix two syntax errors
grml-debootstrap
--- a/grml-debootstrap Tue Jun 05 13:39:40 2007 +0200
+++ b/grml-debootstrap Tue Jun 05 13:41:22 2007 +0200
@@ -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
;;