summaryrefslogtreecommitdiff
path: root/git-shell-commands/mirror
diff options
context:
space:
mode:
Diffstat (limited to 'git-shell-commands/mirror')
-rwxr-xr-xgit-shell-commands/mirror6
1 files changed, 2 insertions, 4 deletions
diff --git a/git-shell-commands/mirror b/git-shell-commands/mirror
index 212687e..8282e9b 100755
--- a/git-shell-commands/mirror
+++ b/git-shell-commands/mirror
@@ -5,8 +5,6 @@
set -E
-for _m in $@; do
- git clone --mirror $_m
+for _m in "$@"; do
+ git clone --mirror "$_m"
done
-
-exit $?