Skip to content

Commit

Permalink
productcompose: typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianschroeter committed Nov 28, 2023
1 parent 4e6b24c commit 9e8f820
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Build/ProductCompose.pm
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ sub parse {
if ($dep->{'architectures'}) {
my $match;
for my $a (@architectures) {
$match if grep { $_ eq $a } @{$dep->{'architectures'} || []};
$match = 1 if grep { $_ eq $a } @{$dep->{'architectures'} || []};
}
next unless $match;
}
Expand Down

0 comments on commit 9e8f820

Please sign in to comment.