From 9db303987786e2f7ffa3423f4a7df9073539cedf Mon Sep 17 00:00:00 2001 From: Chip Childers Date: Sun, 21 Apr 2013 16:10:11 -0400 Subject: [PATCH] Correcting getopts option-string Signed-off-by: Chip Childers --- tools/build/build_asf.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/build/build_asf.sh b/tools/build/build_asf.sh index 390182d86d2..de0d04fc153 100755 --- a/tools/build/build_asf.sh +++ b/tools/build/build_asf.sh @@ -36,16 +36,16 @@ usage(){ echo " -h" } -while getopts v:s:o:b:t:u:c:h opt +while getopts v:s:o:b:u:tch opt do case "$opt" in v) version="$OPTARG";; s) sourcedir="$OPTARG";; o) outputdir="$OPTARG";; b) branch="$OPTARG";; - t) tag='yes';; + t) tag="yes";; u) certid="$OPTARG";; - c) committosvn='yes';; + c) committosvn="yes";; h) usage exit 0;; /?) # unknown flag