Skip to content

Commit 8f8d6e8

Browse files
committed
Implement Stricter Warning Logic
Potentially fixes #21
1 parent 21c97b7 commit 8f8d6e8

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

lib/OutputParser.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,6 @@ class OutputParser{
6060
this.summary.speedup = Number(split[6].replace(/,/g, ''));
6161
} else if (line.match(/^\s*(rsync|rsync error|rsync warning):/g)) { //Error Message
6262
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});
6563
} else { //Otherwise, assumed to be a filename/status
6664
this.outputStatus = line;
6765
}

0 commit comments

Comments
 (0)