diff options
author | Parabola git <git@parabola.nu> | 2016-07-07 22:37:56 +0000 |
---|---|---|
committer | Parabola git <git@parabola.nu> | 2016-07-07 22:37:56 +0000 |
commit | 4fe7bac236d7c1895271bf15bdb9dda1253ec230 (patch) | |
tree | e8f927d4e4a439c1cdfc617d845e736606f02ad9 /git-shell-commands/fetch-mirrors | |
parent | c9ce5eaac72b867b2de97378f1708a035a9e9bf6 (diff) |
git-shell-commands: use tab
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 |