Skip to content

Commit

Permalink
save work
Browse files Browse the repository at this point in the history
  • Loading branch information
tbrowder committed May 15, 2024
1 parent b5f7616 commit e6a1b6e
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion lib/Mi6/Utils.rakumod
Original file line number Diff line number Diff line change
Expand Up @@ -185,15 +185,23 @@ sub lint($dir, :$debug, --> Str) is export {
# to the user

# get contents of the resources file
my @r = find :dir("$dir/resources");

# get contents of the META6.json file
my %m = from-json {slurp "$dir/META6.json"};
my @r2 = %m<resources>;

# compare the two
#=====
# Compare the two
# the files in META6.json do not have to be under the 'resources'
# directory but they must referenced as relative to it and exist
# in the file tree


#===
# other possible improvements
# check the .github/workflows file(s)

# check all 'use X' modules are in META6.json depends

}
Expand Down

0 comments on commit e6a1b6e

Please sign in to comment.