From d05df71e5cd6cf255b380ff0d3e5551997f07dbf Mon Sep 17 00:00:00 2001 From: Trevor Batley Date: Tue, 6 Jun 2023 11:49:16 +1000 Subject: [PATCH] fix sppend --- parse-list.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/parse-list.sh b/parse-list.sh index 44009f7..31ff947 100755 --- a/parse-list.sh +++ b/parse-list.sh @@ -106,14 +106,14 @@ if [ $PROCESSORG ] ; then echo $RESPONSE | grep -oP '(?<="name":").+?(?=")' | while read repo; do if [[ $NOISY || $REVIEW ]] ; then echo "$2 $repo $EXTRAPARAMS" ; fi if [[ ! $REVIEW ]] ; then - if [[ $repo ]] ; then $PARAMLIST+=$repo ; fi + if [[ $repo ]] ; then PARAMLIST+=$repo ; fi fi 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