updated by /home/nico/bin/sync-all-repos on blind
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 9s
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 9s
This commit is contained in:
parent
79b61fe657
commit
0ea5553cc1
1 changed files with 11 additions and 9 deletions
|
@ -8,14 +8,8 @@ fi
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
for repo in ~/.ctt \
|
update_repo() {
|
||||||
~/bin \
|
repo=$1
|
||||||
~/vcs/notes \
|
|
||||||
~/vcs/nico-dot-cdist \
|
|
||||||
~/vcs/cdist-workdir/dot-cdist \
|
|
||||||
~/vcs/ansible-main \
|
|
||||||
~/.password-store \
|
|
||||||
; do
|
|
||||||
echo $repo
|
echo $repo
|
||||||
cd $repo
|
cd $repo
|
||||||
|
|
||||||
|
@ -36,7 +30,15 @@ for repo in ~/.ctt \
|
||||||
git commit -m "updated by $0 on $(hostname)" || true
|
git commit -m "updated by $0 on $(hostname)" || true
|
||||||
git pull
|
git pull
|
||||||
git push
|
git push
|
||||||
done
|
|
||||||
|
}
|
||||||
|
|
||||||
|
REPOLIST="$HOME/.ctt $HOME/bin $HOME/vcs/notes $HOME/vcs/nico-dot-cdist $HOME/vcs/cdist-workdir/dot-cdist $HOME/vcs/ansible-main"
|
||||||
|
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
|
||||||
|
|
||||||
# Repos we want to sync, but don't want to update the working tree
|
# Repos we want to sync, but don't want to update the working tree
|
||||||
for repo in \
|
for repo in \
|
||||||
|
|
Loading…
Reference in a new issue