aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ansible/roles/git-mirrors/templates/update-mirrors.sh.j24
1 files changed, 1 insertions, 3 deletions
diff --git a/ansible/roles/git-mirrors/templates/update-mirrors.sh.j2 b/ansible/roles/git-mirrors/templates/update-mirrors.sh.j2
index 4d4579d..b662082 100644
--- a/ansible/roles/git-mirrors/templates/update-mirrors.sh.j2
+++ b/ansible/roles/git-mirrors/templates/update-mirrors.sh.j2
@@ -9,8 +9,6 @@ MIRRORS_BASE_DIR="{{ git_mirrors_base_dir }}/mirrored"
FOUND_REPOS=$(find "$MIRRORS_BASE_DIR" -name "HEAD" -print0 | xargs -0 dirname)
for repo in $FOUND_REPOS; do
- pushd
-
cd "$repo";
echo "Updating $repo mirror..."
if ! git fetch -q --prune; then
@@ -19,5 +17,5 @@ for repo in $FOUND_REPOS; do
fi
echo "Updated repository."
- popd
+ cd -
done