Fix aggregate handling

This commit is contained in:
Eelco Dolstra 2014-10-01 15:34:05 +02:00
parent 3f51ac6603
commit 5a7efc0469

View file

@ -202,7 +202,7 @@ sub checkJobsetWrapped {
$drvPathToId{$x->{drvPath}} = $x; $drvPathToId{$x->{drvPath}} = $x;
} }
foreach my $job (@{$jobs->{job}}) { foreach my $job (values %{$jobs}) {
next unless $job->{constituents}; next unless $job->{constituents};
my $x = $drvPathToId{$job->{drvPath}} or die; my $x = $drvPathToId{$job->{drvPath}} or die;
foreach my $drvPath (split / /, $job->{constituents}) { foreach my $drvPath (split / /, $job->{constituents}) {