Skip to content

Commit

Permalink
save work
Browse files Browse the repository at this point in the history
  • Loading branch information
tbrowder committed Sep 30, 2023
1 parent 40bfe70 commit 2cc1702
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions lib/Mi6/Helper.rakumod
Original file line number Diff line number Diff line change
Expand Up @@ -150,14 +150,17 @@ sub mi6-helper-new(:$parent-dir!, :$module-name!, :$provides, :$debug) is export

# use the Mi6-Helper/.github/workflows/*.yml files as I've updated them
# but they will be in DISTRIBUTION.contents
my ($Lfh, $Mfh, $Wfh); # = get-workflows; # fil = "$parent-dir/.github/workflows/linux.yml";
my $Lfh = DISTRIBUTION.content(".github/workflows/linux.yml");
my $Mfh = DISTRIBUTION.content(".github/workflows/macos.yml");
my $Wfh = DISTRIBUTION.content(".github/workflows/windows.yml");

my $Lfil = "$modpdir/.github/workflows/linux.yml";
my $Mfil = "$modpdir/.github/workflows/macos.yml";
my $Wfil = "$modpdir/.github/workflows/windows.yml";

spurt $Lfil, $Lstr;
spurt $Mfil, $Mstr;
spurt $Wfil, $Wstr;
spurt $Lfil, $Lfh.slurp;
spurt $Mfil, $Mfh.slurp;
spurt $Wfil, $Wfh.slurp;

=begin comment
my $testfil = "$modpdir/.github/workflows/test.yml";
Expand Down

0 comments on commit 2cc1702

Please sign in to comment.