Commit ac1948c0 by James Cammarata

Minor tweak to rsync_path construction in synchronize module

Fixes #7182
parent 45237f27
...@@ -300,7 +300,7 @@ def main(): ...@@ -300,7 +300,7 @@ def main():
'StrictHostKeyChecking=no') # need ssh param 'StrictHostKeyChecking=no') # need ssh param
if rsync_path: if rsync_path:
cmd = cmd + " --rsync-path '%s'" %(rsync_path) cmd = cmd + " --rsync-path=%s" % (rsync_path)
if rsync_opts: if rsync_opts:
cmd = cmd + " " + " ".join(rsync_opts) cmd = cmd + " " + " ".join(rsync_opts)
changed_marker = '<<CHANGED>>' changed_marker = '<<CHANGED>>'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment