correct syntax errors in sync-all-repos
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 7s
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 7s
This commit is contained in:
parent
ec515d6180
commit
38c174d135
1 changed files with 2 additions and 2 deletions
|
@ -37,11 +37,11 @@ REPOLIST="$HOME/.ctt $HOME/bin $HOME/vcs/notes $HOME/vcs/nico-dot-cdist $HOME/vc
|
|||
REPOLIST2="$REPOLIST $HOME/.password-store"
|
||||
|
||||
# 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
|
||||
|
||||
wait
|
||||
|
||||
for repo in "${REPOLIST}; do update_repo $repo ; done
|
||||
for repo in ${REPOLIST}; do update_repo $repo ; done
|
||||
|
||||
# Repos we want to sync, but don't want to update the working tree
|
||||
for repo in \
|
||||
|
|
Loading…
Reference in a new issue