From ba67e1323ead7859d34f351e50ce8dcb643c513f Mon Sep 17 00:00:00 2001 From: Stephan Barth Date: Thu, 24 Oct 2024 01:41:15 +0200 Subject: [PATCH] build(utils/develop-status.pl): Fix which containers to display. --- utils/develop-status.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/develop-status.pl b/utils/develop-status.pl index ce3378d9d..5c6868761 100755 --- a/utils/develop-status.pl +++ b/utils/develop-status.pl @@ -64,7 +64,7 @@ for my $devStamp(@devs) { for my $k(sort { $cont{$a}{state} cmp $cont{$b}{state} || $cont{$a}{name} cmp $cont{$b}{name} -} keys %cont) { +} grep { !$cont{$_}{used} } keys %cont) { my $c = $cont{$k}; print "Fradrive container outside develop file: ($c->{state}) $c->{name} $c->{id}\n" }