diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2020-08-21 16:13:29 -0400 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2020-08-21 16:13:29 -0400 |
commit | c7c4672668fd2773232cd8fdccd70a7cd344bd61 (patch) | |
tree | 21d8d1d264ae40b191ce780ebd7cb95df00438bb /tools | |
parent | e0021744cfaae490ab9642d7d34e90cebe3e97d2 (diff) |
builds: Don't exclude 'retired' targets from the build list
Change-Id: Ic3b098e1d2ead235035e87d57877c351e28a54d9
Diffstat (limited to 'tools')
-rw-r--r-- | tools/builds.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/builds.pm b/tools/builds.pm index d2e52a377d..466d10efea 100644 --- a/tools/builds.pm +++ b/tools/builds.pm @@ -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; |