From bf8c2f17619847dcd1dc39fe2b1b9f01dff54ac8 Mon Sep 17 00:00:00 2001 From: Oliver Grawert Date: Fri, 21 Dec 2007 03:19:20 +0100 Subject: [PATCH] fix typo in getopts call --- debian/changelog | 6 ++++++ livecd.sh | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 2a225408..2c905991 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +livecd-rootfs (0.48) hardy; urgency=low + + * fix typo in getopts call so the -m and -S options are recognized + + -- Oliver Grawert Fri, 21 Dec 2007 03:16:51 +0100 + livecd-rootfs (0.47) hardy; urgency=low * Fix versioned dependency to squashfs-tools. "." != "-", silly me. diff --git a/livecd.sh b/livecd.sh index 99663411..087d9670 100755 --- a/livecd.sh +++ b/livecd.sh @@ -115,7 +115,7 @@ EXCLUDE="" LIST="" SUBARCH="" -while getopts :d:e:i:I:mS::s: name; do case $name in +while getopts :d:e:i:I:m:S:s: name; do case $name in d) STE=$OPTARG;; e) EXCLUDE="$EXCLUDE $OPTARG";; i) LIST="$LIST $OPTARG";;