We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21c97b7 commit 8f8d6e8Copy full SHA for 8f8d6e8
lib/OutputParser.js
@@ -60,8 +60,6 @@ class OutputParser{
60
this.summary.speedup = Number(split[6].replace(/,/g, ''));
61
} else if (line.match(/^\s*(rsync|rsync error|rsync warning):/g)) { //Error Message
62
this.generator.logger.log('stderr')(line);
63
- } else if(line.match(/[^\\]"[^"\/]+"/g)) { //Line with unescaped " set is assumed to be a warning
64
- output.push({msgType: 'warning', warning: this.outputStatus});
65
} else { //Otherwise, assumed to be a filename/status
66
this.outputStatus = line;
67
}
0 commit comments