Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

prep for new release #15

Merged
merged 1 commit into from
May 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Revision history for Mi6-Helper

{{$NEXT}}
- Correct error in dist.ini: .yml extension was missing
- Correct error in 'method mi6-new-cmd':
+ replaced line 38 reading
my $dir = "$!module-dir/lib";
with
my $dir = "$module-dir/lib";

0.11.4 2024-03-28T10:30:48-05:00
- Require App::Mi6:ver<3.0.5+> (which fixed its own problem
Expand Down
4 changes: 2 additions & 2 deletions lib/Mi6/Helper.rakumod
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ method mi6-new-cmd(:$parent-dir!, :$module-dir!, :$module-name!, :$debug, :$debu
chdir $parent-dir;
cmd "mi6 new --zef $module-name";
self.libdirs = :dir($module-dir), :type<dir>;
my $dir = "$!module-dir/lib";
my $dir = "$module-dir/lib";
self.libfile = find :$dir, :type<file>;
}

Expand Down Expand Up @@ -86,7 +86,7 @@ sub get-file-content($fnam --> Str) is export {
%?RESOURCES{$fnam}.slurp;
}

sub mi6-helper-new(:$parent-dir!, :$module-dir, :$module-name!, :$provides,
sub mi6-helper-new(:$parent-dir!, :$module-dir, :$module-name!, :$provides,
:$debug, :$debug2) is export {

# test module is "Foo::Bar-Baz"
Expand Down
Loading