From: Michael Prokop Date: Sat, 6 Oct 2007 15:38:11 +0000 (+0200) Subject: Fix syntax error X-Git-Tag: 0.0.4~10 X-Git-Url: https://git.grml.org/?p=grml-live.git;a=commitdiff_plain;h=fee9a4245e86a0018a886f5f2f361082483a8192 Fix syntax error --- diff --git a/grml-live b/grml-live index 976f73d..dd5e838 100755 --- a/grml-live +++ b/grml-live @@ -152,14 +152,14 @@ http://grml.org/bugs/ # command line parsing {{{ -while getopts "c:g:i:r:s:t:v:FhV" opt; do +while getopts "c:g:i:o:r:s:t:v:FhV" opt; do case "$opt" in c) CLASSES="$OPTARG" ;; g) GRML_NAME="$OPTARG" ;; i) ISO_NAME="$OPTARG" ;; r) RELEASENAME="$OPTARG" ;; s) SUITE="$OPTARG" ;; - t) TEMPLATE_DIRECTORY="$OPTARG" + t) TEMPLATE_DIRECTORY="$OPTARG";; o) OUTPUT="$OPTARG" CHROOT_OUTPUT="$OUTPUT/grml_chroot" BUILD_OUTPUT="$OUTPUT/grml_cd"