Skip to content

Commit

Permalink
[backend] do not put obsbinlnk files into :repo
Browse files Browse the repository at this point in the history
They are only used in the scheduler.
  • Loading branch information
mlschroe committed Oct 6, 2017
1 parent b4ea911 commit e4d80b3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/backend/BSSched/PublishRepo.pm
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,7 @@ sub prpfinished {
@all = grep {$_ ne 'history' && $_ ne 'logfile' && $_ ne 'rpmlint.log' && $_ ne '_statistics' && $_ ne '_buildenv' && $_ ne '_channel' && $_ ne 'meta' && $_ ne 'status' && $_ ne 'reason' && !/^\./} @all;
for my $bin (@all) {
next if $bin =~ /^::import::/;
next if $bin =~ /\.obsbinlnk$/;
my $rbin = $bin;
# XXX: should be source name instead?
$rbin = "${packid}::$bin" if $debian || $bin eq 'updateinfo.xml';
Expand Down

0 comments on commit e4d80b3

Please sign in to comment.