diff options
Diffstat (limited to 'git-shell-commands/fetch-mirrors')
-rwxr-xr-x | git-shell-commands/fetch-mirrors | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/git-shell-commands/fetch-mirrors b/git-shell-commands/fetch-mirrors index afff064..6b7672d 100755 --- a/git-shell-commands/fetch-mirrors +++ b/git-shell-commands/fetch-mirrors @@ -7,7 +7,7 @@ set -e # Find all mirrors "$(dirname "$0")"/mirrors | while read -r mirror; do - pushd "$mirror" >/dev/null - git remote update - popd >/dev/null + pushd "$mirror" >/dev/null + git remote update + popd >/dev/null done |