From a67efe10f1a0bbeaff47f985f3d114c2566456bf Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Sun, 19 May 2024 16:52:32 +0100 Subject: [PATCH] report: Don't try to mix unknown discs into the primary sort order. This made sense when the discs weren't primarily ordered by box but it doesn't any more. Just leave the unknown ones at the end of the list. --- report | 5 ----- 1 file changed, 5 deletions(-) diff --git a/report b/report index f8d0326..9f2bc11 100755 --- a/report +++ b/report @@ -85,11 +85,6 @@ for my $name (sort { my $pa = $set_path{$a}[0]; my $ba = $box{$pa} // "~~~"; my $paths = $set_path{$name}; my @unk; set_box $box{$paths->[0]}; - while (@iso && $iso[0] lt $paths->[0]) { push @unk, shift @iso; } - if (@unk) { - print "[#UNK: *]\n"; - for my $path (@unk) { print "\t", $path, "\n"; } - } printf "[#%d: %d] %s\n", $set_id{$name}, scalar @$paths, $name; my $i = 0; for my $path (@$paths) { -- 2.11.0