From 757bb3a323aca9634b1fc7cc927b68df511ac2e0 Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Sun, 7 Jun 2026 13:27:50 +0200 Subject: [PATCH] update repo syncer to remove redundant repo --- sync-all-repos | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sync-all-repos b/sync-all-repos index f8807db..a91855e 100755 --- a/sync-all-repos +++ b/sync-all-repos @@ -44,9 +44,9 @@ update_repo() { } 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" +REPOLIST="$REPOLIST $HOME/.password-store" -PULL_PUSH_REPOS="$HOME/vcs/k8s-config/ $HOME/vcs/ansible-main/ $HOME/vcs/icrc" +PULL_PUSH_REPOS="$HOME/vcs/k8s-config/" # First in parallel, then en sequence to spot errors for repo in ${REPOLIST}; do echo $repo ; ( update_repo $repo ) ; done