Skip to content

Commit

Permalink
Merge pull request #9386 from sjamgade/ccache_ignore
Browse files Browse the repository at this point in the history
[backend] ignore ccache.tar.gz before publishing; remove .stats
  • Loading branch information
sjamgade committed Apr 15, 2020
2 parents 94dfbae + 039d22c commit 64557d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/BSSched/PublishRepo.pm
Expand Up @@ -204,7 +204,7 @@ sub prpfinished {
next if $all{'.preinstallimage'};
my $debian = grep {/\.dsc$/} @all;
my $nosourceaccess = $all{'.nosourceaccess'};
@all = grep {$_ ne '.stats' && $_ ne 'history' && $_ ne 'logfile' && $_ ne 'rpmlint.log' && $_ ne '_statistics' && $_ ne '_buildenv' && $_ ne '_channel' && $_ ne 'meta' && $_ ne 'status' && $_ ne 'reason' && !/^\./} @all;
@all = grep {$_ ne '_ccache.tar.gz' && $_ ne 'history' && $_ ne 'logfile' && $_ ne 'rpmlint.log' && $_ ne '_statistics' && $_ ne '_buildenv' && $_ ne '_channel' && $_ ne 'meta' && $_ ne 'status' && $_ ne 'reason' && !/^\./} @all;
my $taken;
for my $bin (@all) {
next if $bin =~ /^::import::/;
Expand Down

0 comments on commit 64557d3

Please sign in to comment.