View | Details | Raw Unified | Return to bug 41274
Collapse All | Expand All

(-)a/Koha/Devel/CI/IncrementalRuns.pm (-1 / +1 lines)
Lines 140-145 sub get_files_to_test { Link Here
140
            @koha_commit_history;
140
            @koha_commit_history;
141
            if ($last_build_commit) {
141
            if ($last_build_commit) {
142
                @files = @{ from_json( read_file("$self->{git_repo_dir}/$self->{test_dir}/$last_build_commit") ) };
142
                @files = @{ from_json( read_file("$self->{git_repo_dir}/$self->{test_dir}/$last_build_commit") ) };
143
                @files = $dev_files->remove_exceptions( \@files, $filetype );
143
                push @files, $dev_files->ls_files( $filetype, "$last_build_commit HEAD" );
144
                push @files, $dev_files->ls_files( $filetype, "$last_build_commit HEAD" );
144
            } else {
145
            } else {
145
146
146
- 

Return to bug 41274