From 521fc08c3a093c511328f248813d8c720a17383e Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 13 Mar 2025 10:03:35 +0100 Subject: [PATCH] Bug 39115: get_tt_files should exclude dirs from tt, not js Silly copy/paste error --- misc/devel/tidy.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/devel/tidy.pl b/misc/devel/tidy.pl index 5d78d9b7ecb..57692eba57e 100755 --- a/misc/devel/tidy.pl +++ b/misc/devel/tidy.pl @@ -157,7 +157,7 @@ sub get_js_files { } sub get_tt_files { - my $cmd = sprintf q{git ls-files '*.tt' '*.inc' %s}, build_git_exclude('js'); + my $cmd = sprintf q{git ls-files '*.tt' '*.inc' %s}, build_git_exclude('tt'); my @files = qx{$cmd}; chomp for @files; return @files; -- 2.34.1