From 04aab06977c58844a129f8cfa818ebcc2bb87796 Mon Sep 17 00:00:00 2001 From: Steve Langasek Date: Tue, 20 Jul 2010 18:24:01 +0200 Subject: [PATCH] fix getopts syntax, oops --- BuildLiveCD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BuildLiveCD b/BuildLiveCD index f451b96e..76e71b53 100755 --- a/BuildLiveCD +++ b/BuildLiveCD @@ -32,7 +32,7 @@ SUITES="" PROPOSED="" IMAGEFORMAT="" -while getopts :s:d:f:p:a name; do case $name in +while getopts :s:d:f:pa: name; do case $name in s) SUBARCH="$OPTARG";; d) NEWSUITE="$OPTARG";; f) IMAGEFORMAT="-f$OPTARG";;