Skip to content

Commit 18d716c

Browse files
committed
library.pl: Skip debug images when building image list
Debug images will not be hosted on Docker Hub (just yet.)
1 parent 190d981 commit 18d716c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ sub release {
6969
my $builds = shift;
7070
my $eol = shift // 0;
7171

72-
my @builds = (@$builds, map {"$_,threaded"} @$builds);
72+
my @builds = grep !/debug/, (@$builds, map {"$_,threaded"} @$builds);
7373

7474
for my $build (@builds) {
7575
for my $debian (reverse @{$release->{debian_release}}) {

0 commit comments

Comments
 (0)