Skip to content

Commit

Permalink
Try work around for MakeMaker not copying empty directories
Browse files Browse the repository at this point in the history
  • Loading branch information
nigelhorne committed Feb 6, 2024
1 parent 92dc3e9 commit 91e0d1d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ jobs:
# find . -name build.log | xargs cat
perl Makefile.PL
make
mkdir blib/Genealogy/ObituaryDailyTimes/data
- name: Run Tests
run: prove -l -b t
env:
Expand Down
1 change: 1 addition & 0 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ my @dirs = (
'lib/Genealogy/ObituaryDailyTimes/data'
);

# FIXME: AUTOMATED_TESTING - create the empty directory in blib
foreach my $dir(@dirs) {
if(! -d $dir) {
print "Creating the download directory $dir\n";
Expand Down

0 comments on commit 91e0d1d

Please sign in to comment.