remove extra displays

This commit is contained in:
Trevor Batley 2023-06-06 12:12:27 +10:00
parent 09f76ab8ab
commit ff91ef36e3

View File

@ -104,10 +104,7 @@ if [ $PROCESSORG ] ; then
break break
else else
echo $RESPONSE | grep -oP '(?<="name":").+?(?=")' | while read repo; do echo $RESPONSE | grep -oP '(?<="name":").+?(?=")' | while read repo; do
if [[ $NOISY || $REVIEW ]] ; then echo "$2 $repo $EXTRAPARAMS" ; fi PARAMLIST+=$repo
if [[ ! $REVIEW ]] ; then
if [[ $repo ]] ; then PARAMLIST+=$repo ; fi
fi
done done
fi fi
done done
@ -120,7 +117,7 @@ fi
for param in "${PARAMLIST[@]}" for param in "${PARAMLIST[@]}"
do do
if [[ $NOISY || $REVIEW ]] ; then echo "$2 $param $EXTRAPARAMS" ; fi if [[ $NOISY || $REVIEW ]] ; then echo "$2 $param $EXTRAPARAMS" ; fi
if [[ ! $REVIEW ]] ; then if [[ -z $REVIEW ]] ; then
if [[ $param ]] ; then $2 $param $EXTRAPARAMS ; fi if [[ $param ]] ; then $2 $param $EXTRAPARAMS ; fi
fi fi
done done