jerrysu / gulp-rsync

Gulp plugin for deploying files via rsync
119 stars 51 forks source link

Deployment with gulp-rsync breaks #49

Open dBourgiotis opened 7 years ago

dBourgiotis commented 7 years ago

Deploy breaks if new user requests the application files, while rsync is executed.

rsyncConf = { progress: true, incremental: true, relative: true, emptyDirectories: true, recursive: true, clean: true, root: 'dist/', archive: true, };

dBourgiotis commented 7 years ago

Actually I ve noticed that --delete-delay and --delay-updates is not implemented. Any plans to add them as options ?