Skip to content

Commit

Permalink
[backend] fix typo in get_buildinfo
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianschroeter committed Sep 20, 2021
1 parent afc05f9 commit 4426a70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/bs_repserver
Original file line number Diff line number Diff line change
Expand Up @@ -3388,7 +3388,7 @@ sub getbuilddepinfo {
my @sccs = @{$depends->{'sccs'} || []};
@$_ = sort @$_ for @sccs;
@sccs = sort {$a->[0] cmp $b->[0]} @sccs;
$res->{'sccs'} = [ map {{'package' => $_}} @sccs ];
$res->{'scc'} = [ map {{'package' => $_}} @sccs ];
}
return ($res, $BSXML::builddepinfo);
}
Expand Down

0 comments on commit 4426a70

Please sign in to comment.