Skip to content

Commit

Permalink
Merge pull request #11669 from adrianschroeter/fix_buildinfo
Browse files Browse the repository at this point in the history
[backend] fix _buildinfo with modules
  • Loading branch information
mlschroe committed Sep 29, 2021
2 parents 8744641 + 18ad959 commit 5fc6b98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/BSRepServer/Checker.pm
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ sub setup_modulemd {
my $bconf = $ctx->{'conf'};
my $dependency = BSSched::Modulemd::select_dependency($bconf, $modulemd);
die("cannot build this module\n") unless $dependency;
my $errors = BSSched::Modulemd::extend_modules($bconf, $dependency->{'buildrequires'} || []);
my $errors = BSSched::Modulemd::extend_modules($bconf, $modulemd, $dependency->{'buildrequires'} || []);
die(join(', ', @$errors)."\n") if $errors;
my $ml = BSSched::Modulemd::calc_modularitylabel($bconf, $modulemd, $dependency->{'requires'} || []);
die("modularitylabel calculation failed\n") unless $ml;
Expand Down

0 comments on commit 5fc6b98

Please sign in to comment.