Silence output

This commit is contained in:
Marcus Noble 2020-12-13 16:32:29 +00:00
parent a9167d1214
commit a610e1f2ef
1 changed files with 16 additions and 16 deletions

32
sync.sh
View File

@ -19,24 +19,24 @@ getDefaultBranch() {
} }
githubGetRepo() { githubGetRepo() {
curl -f -u averagemarcus:${GITHUB_TOKEN} "https://api.github.com/repos/averagemarcus/${1}" -H "accept: application/vnd.github.v3+json" curl -f -u averagemarcus:${GITHUB_TOKEN} "https://api.github.com/repos/averagemarcus/${1}" -H "accept: application/vnd.github.v3+json" 1> /dev/null
} }
githubMakeRepo() { githubMakeRepo() {
curl -X POST -f -u averagemarcus:${GITHUB_TOKEN} "https://api.github.com/user/repos" -H "accept: application/vnd.github.v3+json" -d '{"name": "'${1}'", "private": false, "auto_init": false, "delete_branch_on_merge": true}' curl -X POST -f -u averagemarcus:${GITHUB_TOKEN} "https://api.github.com/user/repos" -H "accept: application/vnd.github.v3+json" -d '{"name": "'${1}'", "private": false, "auto_init": false, "delete_branch_on_merge": true}' 1> /dev/null
} }
bitbucketGetRepo() { bitbucketGetRepo() {
curl -f -u averagemarcus:${BITBUCKET_TOKEN} "https://api.bitbucket.org/2.0/repositories/averagemarcus/${1}" curl -f -u averagemarcus:${BITBUCKET_TOKEN} "https://api.bitbucket.org/2.0/repositories/averagemarcus/${1}" 1> /dev/null
} }
bitbucketMakeRepo() { bitbucketMakeRepo() {
curl -X POST -u averagemarcus:${BITBUCKET_TOKEN} -H "Content-Type: application/json" -d '{"scm": "git", "is_private": false,"project": {"key": "PROJ"}}' "https://api.bitbucket.org/2.0/repositories/averagemarcus/${1}" curl -X POST -u averagemarcus:${BITBUCKET_TOKEN} -H "Content-Type: application/json" -d '{"scm": "git", "is_private": false,"project": {"key": "PROJ"}}' "https://api.bitbucket.org/2.0/repositories/averagemarcus/${1}" 1> /dev/null
} }
gitlabGetRepo() { gitlabGetRepo() {
curl -f "https://gitlab.com/api/v4/projects/averagemarcus/${1}?private_token=${GITLAB_TOKEN}" curl -f "https://gitlab.com/api/v4/projects/averagemarcus/${1}?private_token=${GITLAB_TOKEN}" 1> /dev/null
} }
gitlabMakeRepo() { gitlabMakeRepo() {
curl -X POST --header "Content-Type: application/json" "https://gitlab.com/api/v4/projects?private_token=${GITLAB_TOKEN}" -d '{"name": "'${1}'", "visibility": "public"}' curl -X POST --header "Content-Type: application/json" "https://gitlab.com/api/v4/projects?private_token=${GITLAB_TOKEN}" -d '{"name": "'${1}'", "visibility": "public"}' 1> /dev/null
} }
for REPO in ${REPOS}; do for REPO in ${REPOS}; do
@ -45,7 +45,7 @@ for REPO in ${REPOS}; do
rm -rf ${REPO} rm -rf ${REPO}
mkdir -p ${REPO} mkdir -p ${REPO}
cd ${REPO} cd ${REPO}
git init git init 1> /dev/null
BRANCH=$(getDefaultBranch ${REPO}) BRANCH=$(getDefaultBranch ${REPO})
@ -66,22 +66,22 @@ for REPO in ${REPOS}; do
gitlabGetRepo ${REPO} || gitlabMakeRepo ${REPO} gitlabGetRepo ${REPO} || gitlabMakeRepo ${REPO}
bitbucketGetRepo ${REPO} || bitbucketMakeRepo ${REPO} bitbucketGetRepo ${REPO} || bitbucketMakeRepo ${REPO}
git pull --ff-only gitea ${BRANCH} || failed git pull --ff-only gitea ${BRANCH} 1> /dev/null || failed
git pull --ff-only github ${BRANCH} || printf "\n Unable to pull from GitHub\n\n" git pull --ff-only github ${BRANCH} 1> /dev/null || printf "\n Unable to pull from GitHub\n\n"
git pull --ff-only bitbucket ${BRANCH} || printf "\n Unable to pull from BitBucket\n\n" git pull --ff-only bitbucket ${BRANCH} 1> /dev/null || printf "\n Unable to pull from BitBucket\n\n"
git pull --ff-only gitlab ${BRANCH} || printf "\n Unable to pull from Gitlab\n\n" git pull --ff-only gitlab ${BRANCH} 1> /dev/null || printf "\n Unable to pull from Gitlab\n\n"
git push gitea ${BRANCH} || failed git push gitea ${BRANCH} 1> /dev/null || failed
git push github ${BRANCH} || failed git push github ${BRANCH} 1> /dev/null || failed
git push bitbucket ${BRANCH} || failed git push bitbucket ${BRANCH} 1> /dev/null || failed
git push gitlab ${BRANCH} || failed git push gitlab ${BRANCH} 1> /dev/null || failed
cd .. cd ..
rm -rf ${REPO} rm -rf ${REPO}
printf "\n✅ Successfully synced ${REPO}\n\n" printf "\n✅ Successfully synced ${REPO}\n\n"
done done
if [ ! -z ${FAILED_MESSAGE} ]; if [ ! -z "${FAILED_MESSAGE}" ];
then then
printf ${FAILED_MESSAGE} printf ${FAILED_MESSAGE}
exit 1 exit 1