summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Otto <acotto@gmail.com>2014-03-07 14:59:55 -0500
committerAndrew Otto <acotto@gmail.com>2014-03-07 15:00:08 -0500
commitb56b802c634366d10dce2e3c352ba635774763e7 (patch)
tree64d159ec94927d56e8fa66d1b16da0ceff115179
parent20bb9ac2d11075e29f681a21d406e3ccdde78a65 (diff)
downloadgit-fat-b56b802c634366d10dce2e3c352ba635774763e7.tar.gz
Supporting multiple space separated rsync options
-rwxr-xr-xgit-fat2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-fat b/git-fat
index 8078fc3..092ec26 100755
--- a/git-fat
+++ b/git-fat
@@ -158,7 +158,7 @@ class GitFat(object):
if rshopts:
cmd.append('--rsh=ssh' + rshopts)
if options:
- cmd.append(options)
+ cmd += options.split(' ')
if push:
cmd += [self.objdir + '/', remote + '/']
else: