option for nooutput

This commit is contained in:
Trevor Batley 2023-06-02 11:12:56 +10:00
parent 2506441cfd
commit e68b051f83

View File

@ -68,6 +68,7 @@ SOURCEACCESSTOKEN=${remote_GITEAACCESSTOKEN}
SOURCEORG="smeserver"
TARGETORG=${remote_USER}
DELETEIT=
NOOUTPUT=
for param in $2 $3 $4 $5; do
if [ $param ] ; then
case $param in
@ -79,6 +80,8 @@ for param in $2 $3 $4 $5; do
DELETEIT=true ;;
debug )
DEBUG=true ;;
nooutput )
NOOUTPUT=true
* )
SOURCEORGORG=$param ;;
esac
@ -284,6 +287,8 @@ git push origin &> /dev/null
#Convert repository to a Regular Repository (rather than fork)
#Can't do via API call ATM, so leave a message
echo "$SOURCEORG/$SOURCEPKG has been renamed as $TARGETORG/$TARGETPKG"
echo "It is still a forked repository, so you need to 'Convert to Regular Repository' in GITEA and then 'Transfer' it to it's final Organisation"
if [[ -z $NOOUTPUT ]] ; then
echo "$SOURCEORG/$SOURCEPKG has been renamed as $TARGETORG/$TARGETPKG"
echo "It is still a forked repository, so you need to 'Convert to Regular Repository' in GITEA and then 'Transfer' it to it's final Organisation"
fi
exit 0