Fixed continue

This commit is contained in:
Marcus Noble 2021-02-05 06:01:50 +00:00
parent b178e0f034
commit 67581dd30c
1 changed files with 6 additions and 7 deletions

11
sync.sh
View File

@ -62,22 +62,21 @@ for REPO in ${REPOS}; do
cd ..
FAILED_MESSAGE="${FAILED_MESSAGE}\n⚠ Failed to sync ${REPO}\n\n"
continue
}
githubGetRepo ${REPO} || githubMakeRepo ${REPO}
gitlabGetRepo ${REPO} || gitlabMakeRepo ${REPO}
bitbucketGetRepo ${REPO} || bitbucketMakeRepo ${REPO}
git pull --ff-only gitea ${BRANCH} 1> /dev/null || failed
git pull --ff-only gitea ${BRANCH} 1> /dev/null || { failed; continue; }
git pull --ff-only github ${BRANCH} 1> /dev/null || printf "\n Unable to pull from GitHub\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} 1> /dev/null || printf "\n Unable to pull from Gitlab\n\n"
git push gitea ${BRANCH} 1> /dev/null || failed
git push github ${BRANCH} 1> /dev/null || failed
git push bitbucket ${BRANCH} 1> /dev/null || failed
git push gitlab ${BRANCH} 1> /dev/null || failed
git push gitea ${BRANCH} 1> /dev/null || { failed; continue; }
git push github ${BRANCH} 1> /dev/null || { failed; continue; }
git push bitbucket ${BRANCH} 1> /dev/null || { failed; continue; }
git push gitlab ${BRANCH} 1> /dev/null || { failed; continue; }
cd ..
rm -rf ${REPO}