encapsulate params

This commit is contained in:
Trevor Batley 2023-06-06 12:26:36 +10:00
parent 51ecfe7ee1
commit 2b60851ea3

View File

@ -104,13 +104,13 @@ if [ $PROCESSORG ] ; then
break
else
echo $RESPONSE | grep -oP '(?<="name":").+?(?=")' | while read repo; do
PARAMLIST+=$repo
PARAMLIST+=($repo)
done
fi
done
else
# load array of parameters from input file
while read -r line ; do PARAMLIST+=$line ; done < $1
while read -r line ; do PARAMLIST+=($line) ; done < $1
fi
# Cycle through array of parameters and execute script