3
0
mirror of https://git.launchpad.net/livecd-rootfs synced 2025-04-11 03:01:14 +00:00

drop non-existent sanitize command from option parser

This commit is contained in:
Oliver Grawert 2008-01-25 17:38:31 +01:00
parent bf8c2f1761
commit b4e3074b81

@ -119,9 +119,9 @@ 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";;
I) UINUM=$(sanitize int "$OPTARG");;
m) OPTMIRROR=$(sanitize url "$OPTARG");;
S) USZ=$(sanitize int "$OPTARG");;
I) UINUM="$OPTARG";;
m) OPTMIRROR="$OPTARG";;
S) USZ="$OPTARG";;
s) SUBARCH="$OPTARG";;
\?) echo bad usage >&2; exit 2;;
\:) echo missing argument >&2; exit 2;;