perlcritic: run with --quiet flag to not log all files

we only want warnings, we don't care which files have been checked.
This commit is contained in:
Jörg Thalheim
2025-08-05 22:42:07 +02:00
committed by ahuston-0
parent 2e02b25da5
commit a63ed33f9c

View File

@@ -13,4 +13,4 @@ chdir($dirname) or die "Failed to enter $dirname\n";
# Add src/lib to PERL5LIB so perlcritic can find our custom policies
$ENV{PERL5LIB} = "src/lib" . ($ENV{PERL5LIB} ? ":$ENV{PERL5LIB}" : "");
exec("perlcritic", ".") or die "Failed to execute perlcritic.";
exec("perlcritic", "--quiet", ".") or die "Failed to execute perlcritic.";