Skip to content

Commit

Permalink
Skip SPDX reports in all cases
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed May 21, 2024
1 parent dd2eda1 commit e01ce31
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/Cavil/Checkout.pm
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,9 @@ sub unpacked_files ($self, $bucket_size = undef) {
my @files;
for my $file (sort keys %{$unpacked}) {

# Reports might still be present if checkouts get unpacked more than once
next if $file =~ /\.report(?:\.processed)?\.spdx$/;

my $mime = $unpacked->{$file}{mime};
next if $mime =~ $BLACKLIST_MIME_RE;

Expand Down

0 comments on commit e01ce31

Please sign in to comment.