From e3f6b8e3246f89c6df4052006d18df542721c16e Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Mon, 2 Jun 2014 13:48:51 -0400 Subject: lukeshu-ify the git-shell-commands mostly, handle escaping repo names consistently-ish --- git-shell-commands/mirror | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'git-shell-commands/mirror') 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 $? -- cgit v1.2.3