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

This commit is contained in:
Nico Schottelius 2025-11-29 17:31:28 +01:00
commit add343d56f

View file

@ -50,7 +50,7 @@ PULL_PUSH_REPOS="$HOME/vcs/k8s-config/ $HOME/vcs/ansible-main/"
# 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
for repo in ${PULL_PUSH_REPOS}; do ( pull_repo $repo & ) ; done for repo in ${PULL_PUSH_REPOS}; do ( pull_push_repo $repo & ) ; done
echo "Waiting for async process to finish ..." echo "Waiting for async process to finish ..."
@ -62,7 +62,7 @@ exit 0
echo "Starting for sync process ..." echo "Starting for sync process ..."
for repo in ${REPOLIST}; do update_repo $repo ; done for repo in ${REPOLIST}; do update_repo $repo ; done
for repo in ${PULL_PUSH_REPOS}; do pull_repo $repo ; done for repo in ${PULL_PUSH_REPOS}; do pull_push_repo $repo ; done
# Step 2: pull/push all other repos in ~/vcs/ # Step 2: pull/push all other repos in ~/vcs/
# We cannot commit as we do not know the state, but we # We cannot commit as we do not know the state, but we