There's no reason for diff call here to not always ignore whitespace.
This commit is contained in:
parent
232072ed9e
commit
c3be8155aa
1 changed files with 1 additions and 1 deletions
|
@ -221,7 +221,7 @@ if ($DO_DIFF) {
|
|||
foreach my $file (sort(keys %final)) {
|
||||
if ($origFiles2sha1->{$file} ne $comparedFiles2sha1->{$file}) {
|
||||
system(
|
||||
"/usr/bin/diff -u \"$origDir/$file\" \"$comparedDir/$file\" >> $diffOutputFile 2>&1");
|
||||
"/usr/bin/diff -wu \"$origDir/$file\" \"$comparedDir/$file\" >> $diffOutputFile 2>&1");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue