We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I got this working, but:
Runtime for a tiny site (60 files) was 28 seconds.
I replaced it with this:
gulp.task('deploy', function (cb) { exec('rsync -r -a -v -e ssh dist/ xyz@xyz.com:/home/xyz/xyz.com', function (err, stdout, stderr) { console.log(stdout); console.log(stderr); cb(err); }); })
And it runs between 1.63 and 12 seconds, depending if there are no updates, or all files updated.
The text was updated successfully, but these errors were encountered:
Agree! Needs some options for parallel uploading
Sorry, something went wrong.
No branches or pull requests
I got this working, but:
Runtime for a tiny site (60 files) was 28 seconds.
I replaced it with this:
gulp.task('deploy', function (cb) {
exec('rsync -r -a -v -e ssh dist/ xyz@xyz.com:/home/xyz/xyz.com', function (err, stdout, stderr) {
console.log(stdout);
console.log(stderr);
cb(err);
});
})
And it runs between 1.63 and 12 seconds, depending if there are no updates, or all files updated.
The text was updated successfully, but these errors were encountered: