Skip to content

Commit

Permalink
Some deps, if installed fresh from the CPAN, don't work on 5.12 and b…
Browse files Browse the repository at this point in the history
…elow so generate spurious failure reports
  • Loading branch information
DrHyde committed Sep 20, 2024
1 parent 1cfcb96 commit 04417cd
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ use warnings;
use ExtUtils::MakeMaker;
use File::ShareDir::Install;

# Suppress noise from 5.12 and below CPAN-testers, where dependencies can be a bit ropey
if($ENV{AUTOMATED_TESTING} && $^V < 5.014) {
die("OS unsupported\n");
}

BEGIN {
unshift @INC, 'buildtools';
require Number::Phone::BuildTools;
Expand Down

0 comments on commit 04417cd

Please sign in to comment.