Merge pull request #6838 from arBmind/Rsync_commandline_output

Add shell quotes to the reported rsync command line to make it readable.
This commit is contained in:
Seth Vargo 2016-06-06 19:46:42 -04:00
commit da9306fa27
1 changed files with 1 additions and 1 deletions

View File

@ -160,7 +160,7 @@ module VagrantPlugins
if r.exit_code != 0
raise Vagrant::Errors::RSyncError,
command: command.join(" "),
command: command.map { |s| s.include?(' ') && s[0] != "'" && ('"' + s + '"') || s }.join(" "),
guestpath: guestpath,
hostpath: hostpath,
stderr: r.stderr