From a63ed33f9c9109fdab46b3f8246f63f134e8d9f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Tue, 5 Aug 2025 22:42:07 +0200 Subject: [PATCH] perlcritic: run with --quiet flag to not log all files we only want warnings, we don't care which files have been checked. --- t/perlcritic.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/perlcritic.pl b/t/perlcritic.pl index b75dd7e7..09172ede 100755 --- a/t/perlcritic.pl +++ b/t/perlcritic.pl @@ -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.";