improve my rewrite of installhtml’s dir scan

This commit is contained in:
Aristotle Pagaltzis 2015-12-09 00:36:38 +01:00
parent 73e3ba067f
commit 7e7b3f792c

View File

@ -500,12 +500,12 @@ sub installdir {
no_upwards($_) or next;
my $is_dir = -d "$podroot/$dir/$_";
next if $is_dir and not $recurse;
my $target = (
$is_dir ? \@dirlist :
s/\.pod$// ? \@podlist :
s/\.pm$// ? \@pmlist :
undef
);
my $target
= $is_dir ? \@dirlist
: s/\.pod$// ? \@podlist
: s/\.pm$// ? \@pmlist
: undef
;
push @$target, "$dir/$_" if $target;
}