Bugzilla – Attachment 182309 Details for
Bug 39877
CI - Incremental runs
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 39877: Remove files that have been deleted
Bug-39877-Remove-files-that-have-been-deleted.patch (text/plain), 1.08 KB, created by
Jonathan Druart
on 2025-05-12 20:35:56 UTC
(
hide
)
Description:
Bug 39877: Remove files that have been deleted
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2025-05-12 20:35:56 UTC
Size:
1.08 KB
patch
obsolete
>From bf15562bc25eb7fcb3892a450db1b6876359a43f Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Mon, 12 May 2025 15:07:15 +0200 >Subject: [PATCH] Bug 39877: Remove files that have been deleted > >Ignore deleted or renamed files >--- > Koha/Devel/Files.pm | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > >diff --git a/Koha/Devel/Files.pm b/Koha/Devel/Files.pm >index b3742f1c810..6f8c572185c 100644 >--- a/Koha/Devel/Files.pm >+++ b/Koha/Devel/Files.pm >@@ -133,8 +133,8 @@ sub ls_perl_files { > $git_range =~ s|\.\.| |; > my @modified_files = qx{git diff --name-only $git_range}; > chomp @modified_files; >- push @files, grep { /\.(pl|PL|pm|t)$/ } @modified_files; >- push @files, grep { /^(svc|opac\/svc)/ } @modified_files; >+ push @files, grep { -e && /\.(pl|PL|pm|t)$/ } @modified_files; >+ push @files, grep { -e && /^(svc|opac\/svc)/ } @modified_files; > my @exception_files = $exceptions->{pl}->{ $self->{context} }; > @files = array_minus( @files, @exception_files ); > } else { >-- >2.34.1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 39877
:
182308
|
182309
|
182310
|
182311
|
182347
|
182348
|
182349
|
182350
|
182355
|
182356
|
182357
|
182358