Skip to content
This repository has been archived by the owner on Jul 11, 2023. It is now read-only.

Commit

Permalink
Merge branch 'master' of github.com:mattijs/node-rsync
Browse files Browse the repository at this point in the history
  • Loading branch information
mattijs committed Feb 25, 2014
2 parents 014fc31 + 3800715 commit 5e6ccd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rsync.js
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ Rsync.prototype.execute = function(callback, stdoutHandler, stderrHandler) {
var cmdProc;
if ('win32' === process.platform) {
cmdProc = spawn('cmd.exe', ['/s', '/c', '"' + this.command() + '"'],
{ stdio: 'pipe' });
{ stdio: 'pipe', windowsVerbatimArguments: true });
}
else {
cmdProc = spawn('/bin/sh', ['-c', this.command()],
Expand Down

0 comments on commit 5e6ccd2

Please sign in to comment.