Merge branch '145-build-system-rewrite' of gitea.uniworx.systems:fraport/fradrive into 145-build-system-rewrite

This commit is contained in:
Sarah Vaupel 2024-10-24 01:51:28 +02:00
commit 464e1c0fc4

View File

@ -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"
}