encapsulate params
This commit is contained in:
parent
51ecfe7ee1
commit
2b60851ea3
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user