updated by /home/nico/bin/sync-all-repos on bibimbap

This commit is contained in:
Nico Schottelius 2026-06-06 09:52:57 +02:00
commit aeef0c9cfc

View file

@ -49,8 +49,8 @@ REPOLIST2="$REPOLIST $HOME/.password-store"
PULL_PUSH_REPOS="$HOME/vcs/k8s-config/ $HOME/vcs/ansible-main/ $HOME/vcs/icrc"
# First in parallel, then en sequence to spot errors
for repo in ${REPOLIST}; do ( update_repo $repo & ) ; done
for repo in ${PULL_PUSH_REPOS}; do ( pullpush_repo $repo & ) ; done
for repo in ${REPOLIST}; do echo $repo ; ( update_repo $repo ) ; done
for repo in ${PULL_PUSH_REPOS}; do echo $repo; ( pullpush_repo $repo ) ; done
echo "Waiting for async process to finish ..."