updated by /home/nico/bin/sync-all-repos on sun
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 7s

This commit is contained in:
Nico Schottelius 2024-10-02 12:05:14 +09:00
parent 38c174d135
commit 7148f3f780

View file

@ -39,7 +39,9 @@ REPOLIST2="$REPOLIST $HOME/.password-store"
# First in parallel, then en sequence to spot errors # First in parallel, then en sequence to spot errors
for repo in ${REPOLIST}; do ( update_repo $repo & ) ; done for repo in ${REPOLIST}; do ( update_repo $repo & ) ; done
echo "Waiting for async process to finish ..."
wait wait
echo "Starting for sync process ..."
for repo in ${REPOLIST}; do update_repo $repo ; done for repo in ${REPOLIST}; do update_repo $repo ; done