I am using Flightplan to deploy a node.js application in production. Here is my flightplan.js file.
var plan = require('flightplan'); plan.target('default', { host: {{host}}, username: {{ username }}, port: '2222', agent: process.env.SSH_AUTH_SOCK }); plan.local(function(local) { local.log('Copy files to remote hosts'); var filesToCopy = local.exec('git ls-files', { silent: true });
When I run the default checkbox, it stops and says
'rsync' is not recognized as an internal or external command
How can I get the rsync command? I am running windows 8.
source share