forked from len0rd/rockbox
builds: Don't exclude 'retired' targets from the build list
Change-Id: Ic3b098e1d2ead235035e87d57877c351e28a54d9
This commit is contained in:
parent
e0021744cf
commit
c7c4672668
1 changed files with 1 additions and 1 deletions
|
|
@ -498,7 +498,7 @@ sub allbuilds {
|
||||||
my @list;
|
my @list;
|
||||||
|
|
||||||
for my $b (sort byname keys %builds) {
|
for my $b (sort byname keys %builds) {
|
||||||
push @list, $b if ($builds{$b}{status} >= 1);
|
push @list, $b;
|
||||||
}
|
}
|
||||||
|
|
||||||
return @list;
|
return @list;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue