Skip to content

Commit 9db3039

Browse files
author
Chip Childers
committed
Correcting getopts option-string
Signed-off-by: Chip Childers <chipchilders@apache.org>
1 parent 9e46429 commit 9db3039

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tools/build/build_asf.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,16 +36,16 @@ usage(){
3636
echo " -h"
3737
}
3838

39-
while getopts v:s:o:b:t:u:c:h opt
39+
while getopts v:s:o:b:u:tch opt
4040
do
4141
case "$opt" in
4242
v) version="$OPTARG";;
4343
s) sourcedir="$OPTARG";;
4444
o) outputdir="$OPTARG";;
4545
b) branch="$OPTARG";;
46-
t) tag='yes';;
46+
t) tag="yes";;
4747
u) certid="$OPTARG";;
48-
c) committosvn='yes';;
48+
c) committosvn="yes";;
4949
h) usage
5050
exit 0;;
5151
/?) # unknown flag

0 commit comments

Comments
 (0)