builds: Don't exclude 'retired' targets from the build list

Change-Id: Ic3b098e1d2ead235035e87d57877c351e28a54d9
This commit is contained in:
Solomon Peachy 2020-08-21 16:13:29 -04:00
parent e0021744cf
commit c7c4672668
1 changed files with 1 additions and 1 deletions

View File

@ -498,7 +498,7 @@ sub allbuilds {
my @list;
for my $b (sort byname keys %builds) {
push @list, $b if ($builds{$b}{status} >= 1);
push @list, $b;
}
return @list;