diff --git a/.github/scripts/badwords.pl b/.github/scripts/badwords.pl index 1fde5ec473..255cb92c8f 100755 --- a/.github/scripts/badwords.pl +++ b/.github/scripts/badwords.pl @@ -94,13 +94,13 @@ sub file { my $ch = "$f:$l:$w"; if($wl{$ch}) { # whitelisted filename + line + word - print STDERR "$ch found but whitelisted\n"; + #print STDERR "$ch found but whitelisted\n"; next; } $ch = $f . "::" . $w; if($wl{$ch}) { # whitelisted filename + word - print STDERR "$ch found but whitelisted\n"; + #print STDERR "$ch found but whitelisted\n"; next; }