Skip to content

Commit

Permalink
Fix for namespace clean/autoclean minimum versions
Browse files Browse the repository at this point in the history
  • Loading branch information
bscan committed Oct 23, 2023
1 parent d2fe8ce commit ab444e4
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions server/src/perl/Inquisitor.pm
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ $SIG{__WARN__} = sub { warn '=PerlWarning=', @_ };
# I hope this doesn't cause any issues, perhaps VERSION numbers or import statements would help here
$INC{'namespace/clean.pm'} = '';
$INC{'namespace/autoclean.pm'} = '';
{
no strict 'refs';
*{'namespace::autoclean::VERSION'} = sub { '0.29' };
*{'namespace::clean::VERSION'} = sub { '0.27' };
}

CHECK {
if(!$ENV{'PERLNAVIGATORTEST'}){
Expand Down

0 comments on commit ab444e4

Please sign in to comment.