hmm
This commit is contained in:
parent
5b1b0a73d9
commit
c3fcc5a10d
@ -9,7 +9,6 @@ mapfile -t array < <(cli -m csv -c 'app chart_release query name,update_availabl
|
|||||||
echo "Asynchronous Updates: $update_limit"
|
echo "Asynchronous Updates: $update_limit"
|
||||||
|
|
||||||
it=0
|
it=0
|
||||||
|
|
||||||
while [[ $it -lt ${#array[@]} ]]
|
while [[ $it -lt ${#array[@]} ]]
|
||||||
do
|
do
|
||||||
jobs=$(jobs -p | wc -l)
|
jobs=$(jobs -p | wc -l)
|
||||||
|
@ -88,7 +88,7 @@ do
|
|||||||
# existing or starting with dash?
|
# existing or starting with dash?
|
||||||
if [[ -n $nextopt && $nextopt != -* ]] ; then
|
if [[ -n $nextopt && $nextopt != -* ]] ; then
|
||||||
OPTIND=$((OPTIND + 1))
|
OPTIND=$((OPTIND + 1))
|
||||||
update_limit=("$OPTARG")
|
update_limit="$OPTARG"
|
||||||
else
|
else
|
||||||
update_limit=1
|
update_limit=1
|
||||||
fi
|
fi
|
||||||
@ -100,7 +100,7 @@ do
|
|||||||
# existing or starting with dash?
|
# existing or starting with dash?
|
||||||
if [[ -n $nextopt && $nextopt != -* ]] ; then
|
if [[ -n $nextopt && $nextopt != -* ]] ; then
|
||||||
OPTIND=$((OPTIND + 1))
|
OPTIND=$((OPTIND + 1))
|
||||||
update_limit=$OPTARG
|
update_limit="$OPTARG"
|
||||||
else
|
else
|
||||||
update_limit=1
|
update_limit=1
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user