Skip to content

Commit

Permalink
save work
Browse files Browse the repository at this point in the history
  • Loading branch information
tbrowder committed May 21, 2024
1 parent abd5a08 commit 0d31ec5
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions lib/Mi6/Utils.rakumod
Original file line number Diff line number Diff line change
Expand Up @@ -453,6 +453,13 @@ sub find-used-files($dir, %meta, :$debug --> Hash) {
if %mdeps{$_}:exists {
++$in-deps
}
if $in-tests and $in-deps {
}
elsif $in-tests {
}
elsif $in-deps {
}

}
for %non-tests.keys {
my $in-tests = 0;
Expand All @@ -463,6 +470,12 @@ sub find-used-files($dir, %meta, :$debug --> Hash) {
if %mdeps{$_}:exists {
++$in-deps
}
if $in-tests and $in-deps {
}
elsif $in-tests {
}
elsif $in-deps {
}
}

# add to the report
Expand Down

0 comments on commit 0d31ec5

Please sign in to comment.