Skip to content

Commit

Permalink
[backend] fix syntax error in kiwi path evaluation code
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianschroeter committed Jul 3, 2013
1 parent dbe9088 commit e926fb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/bs_sched
Expand Up @@ -567,7 +567,7 @@ sub add_crossmarker {
sub expandkiwipath {
my ($info, $prpsearchpath) = @_;
my @path;
for ({$info->{'path'} || []}) {
for (@{$info->{'path'} || []}) {
if ($_->{'project'} eq '_obsrepositories') {
push @path, @{$prpsearchpath || []};
} else {
Expand Down

0 comments on commit e926fb9

Please sign in to comment.