Skip to content

Commit

Permalink
Build: Hide rsync file list (#815)
Browse files Browse the repository at this point in the history
Reduce log verbosity
  • Loading branch information
tonyjin authored Jun 30, 2018
1 parent d865b59 commit e1e4b57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/RsyncPlugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RsyncPlugin.prototype.apply = function rsync(compiler) {
compiler.plugin('done', () => {
console.log('');
console.log(`🔄 🔄 🔄 Rsync starting for ${this.source} 🔄 🔄 🔄`);
execSync(`rsync -avz --delete --exclude=".*" "${this.source}" "${this.destination}"`, { stdio: [0, 1, 2] });
execSync(`rsync -avzq --delete --exclude=".*" "${this.source}" "${this.destination}"`, { stdio: [0, 1, 2] });
});
};

Expand Down

0 comments on commit e1e4b57

Please sign in to comment.