jerrysu / gulp-rsync

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

Ref issue #58 - Using remote rsync path on options #59

Closed LeandroFranciscato closed 1 year ago

LeandroFranciscato commented 4 years ago

it'd be used like this:

rsyncConf = {
        progress: true,
        incremental: true,
        relative: true,
        emptyDirectories: true,
        recursive: true,
        clean: true,
        exclude: [],
        remoteRsyncPath: "/home/user/bin/rsync"
    };

It could be helpfull when you're using a share server and have no access to add rsync to /usr/bin folder.