jerrysu / gulp-rsync

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

enabled to set additional rsync options #2

Closed polidog closed 10 years ago

polidog commented 10 years ago

Hi!! , made changes so that options.args can be set arbitrarily :smile:

jerrysu commented 10 years ago

Hi @polidog! Which flags/options are you trying to set? I'm not sure I want to expose all flags/options to the plugin, since some don't work well with each other. Thanks for the feedback!

polidog commented 10 years ago

Oh i see... I wanted to use option 'a', 't', 'u' and 'z', which are not available now. Mast options are 'u' and 'z' !!

jerrysu commented 10 years ago

@polidog: I added 'times', 'update', and 'compress' to 0.0.3: 435c2f131f0a4c6b23adf353dcc4a5e2fa039153

yethee commented 9 years ago

I need to use --no-perms and --chmod options. How can I pass their to the command?

yethee commented 9 years ago

File permissions are not valid on destination system, when files are exported from Windows to Unix. Therefore it's necessary to use chmod option. @jerrysu, can you add support no-perms and chmod options? Or maybe you have any ideas how to solve issue with file permissions in Unix system?