Minor tweak to rsync_path construction in synchronize module
Fixes #7182
This commit is contained in:
parent
de3f7e4225
commit
b53bf7c8b1
1 changed files with 1 additions and 1 deletions
|
@ -300,7 +300,7 @@ def main():
|
|||
'StrictHostKeyChecking=no') # need ssh param
|
||||
|
||||
if rsync_path:
|
||||
cmd = cmd + " --rsync-path '%s'" %(rsync_path)
|
||||
cmd = cmd + " --rsync-path=%s" % (rsync_path)
|
||||
if rsync_opts:
|
||||
cmd = cmd + " " + " ".join(rsync_opts)
|
||||
changed_marker = '<<CHANGED>>'
|
||||
|
|
Loading…
Reference in a new issue