Revision history for App-FatPacker
+ - don't fail tracing w/undef INC values due to failed optional module load
+
0.010_006 - 2017-01-20
- detect and handle packing from within inc dirs w/version part
- fix tests to no longer rely on . being in @INC
for my $inc (keys %INC) {
next if exists $initial_inc{$inc};
- next unless $INC{$inc} =~ /\Q${inc}\E\Z/;
+ next unless defined($INC{$inc}) and $INC{$inc} =~ /\Q${inc}\E\Z/;
print $trace "$inc\n";
}
}