Fix skipArgsIteration in scripts/ybcon.sh.
This commit is contained in:
parent
a427010099
commit
342042282b
|
@ -37,10 +37,10 @@ if [ "$#" != 0 ]; then
|
|||
elif [ "$1" = "--version" ]; then
|
||||
run=true
|
||||
args="$1"
|
||||
skipArgsIteration=false;
|
||||
skipArgsIteration=true;
|
||||
fi
|
||||
fi
|
||||
if [ $skipArgsIteration = true ]; then
|
||||
if [ "$skipArgsIteration" = false ]; then
|
||||
for it in "$@"
|
||||
do
|
||||
case "$it" in
|
||||
|
|
Loading…
Reference in New Issue