Skip to content

Commit

Permalink
possible fix for rsync problems (#1,#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
pstadler committed Jun 1, 2014
1 parent 8c71608 commit ab35349
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/transport/shell.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ ShellTransport.prototype.__transfer = function(files, remoteDir, options) {
, (config.username ? config.username + '@' : '')
, config.host, remoteDir);

var cmd = util.format('(echo "%s") | rsync --files-from - %s --rsh="ssh -p%s%s" ./ %s'
var cmd = util.format('(printf "%s") | rsync --files-from - %s --rsh="ssh -p%s%s" ./ %s'
, files, rsyncFlags, config.port || 22
, sshFlags, remoteUrl);

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "flightplan",
"description": "Library for streamlining application deployment or systems administration tasks",
"version": "0.3.1",
"version": "0.3.2",
"author": "Patrick Stadler <patrick.stadler@gmail.com>",
"keywords": [
"deploy",
Expand Down

0 comments on commit ab35349

Please sign in to comment.