Skip to content

Commit

Permalink
Fixed GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
nigelhorne committed Feb 1, 2024
1 parent 5022ded commit a74915f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ jobs:
- name: Install Dependencies
run: |
cpanm -iqn ExtUtils::MakeMaker Test::Most Clone
cpanm -iqnf --skip-satisfied LWP::Simple::WithCache CGI::IDS
cpanm -iqn --skip-satisfied HTML::Entities
cpanm -iqnf --skip-satisfied LWP::Simple::WithCache CGI::IDS DB_File
cpanm -iqn --skip-satisfied HTML::Entities LWP::Protocol::https
cpanm -ivn --installdeps .
- name: Make Module
run: |
Expand Down
2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ WriteMakefile(
PREREQ_PM => {
'Carp' => 0,
# 'BerkeleyDB' => 0,
# 'DB_File' => 0,
'DB_File' => 0,
'DBI' => 0,
'Digest::MD5' => 0,
'File::pfopen' => '0.02',
Expand Down
8 changes: 4 additions & 4 deletions createdatabase.PL
Original file line number Diff line number Diff line change
Expand Up @@ -4315,13 +4315,13 @@ print __LINE__, "\n";
return $row
}
}
if(!defined($row)) {
if(defined($row)) {
# name/place/is_in = Carpenter Rd/U.S. Route 82 in Texas/Québec, Canada
# name/place/is_in = Chaudière Bridge/Tenth Avenue (Manhattan)/Québec, Canada
print STDERR "$file: Can't parse name = $name, place = $place, is_in = $is_in\n";
return
print "$file: Can't parse name = $name, place = $place, is_in = $is_in\n";
} else {
return $row
}
return $row
} elsif((scalar(@is_in_fields) == 3) && ($is_in_fields[0] eq 'Canada')) {
print __LINE__, "\n";
# name/place/is_in = Hébertville/undef/Canada,Québec,Saguenay Lac-St-Jean
Expand Down

0 comments on commit a74915f

Please sign in to comment.