add in debug param

This commit is contained in:
Trevor Batley 2023-06-05 16:18:06 +10:00
parent 72625870bf
commit f2b2c021f8

View File

@ -59,6 +59,7 @@ if [[ $(which $2 | grep "no $2") ]] ; then
exit 1 exit 1
fi fi
DEBUG=
REVIEW= REVIEW=
NOISY= NOISY=
GITEAHOST=${remote_GITEAHOST} GITEAHOST=${remote_GITEAHOST}
@ -75,6 +76,8 @@ for param in $3 $4 $5 $6; do
ACCESSTOKEN=${local_GITEAACCESSTOKEN} ACCESSTOKEN=${local_GITEAACCESSTOKEN}
EXTRAPARAMS=$EXTRAPARAMS" "$param EXTRAPARAMS=$EXTRAPARAMS" "$param
;; ;;
debug )
DEBUG=true ;;
* ) * )
EXTRAPARAMS=$EXTRAPARAMS" "$param ;; EXTRAPARAMS=$EXTRAPARAMS" "$param ;;
esac esac
@ -87,7 +90,7 @@ if [ $PROCESSORG ] ; then
# cycle through the repos in the specified organisation # cycle through the repos in the specified organisation
# get a list of repositories in the source organisation # get a list of repositories in the source organisation
for page in {1..10} ; do for page in {1..10} ; do
if [ $DEBUG ] ; then echo "getting page $page of repos from $GITHOST $PROCESSORG" ; fi if [ $DEBUG ] ; then echo "getting page $page of repos from $GITEAHOST $PROCESSORG" ; fi
RESPONSE=$(curl -s -X 'GET' \ RESPONSE=$(curl -s -X 'GET' \
"$GITEAHOST/api/v1/orgs/$PROCESSORG/repos?page=$page" \ "$GITEAHOST/api/v1/orgs/$PROCESSORG/repos?page=$page" \
-H 'accept: application/json' \ -H 'accept: application/json' \