SVN-Notify
view release on metacpan or search on metacpan
my $self = shift;
$self->SUPER::ACTION_code(@_);
# Copy the test scripts and then set the shebang line and make
# sure that they're executable.
my @scripts;
my $to_dir = $self->localize_file_path("t/scripts");
for my $base (qw(testsvnlook testsendmail)) {
my $script = "$to_dir/$base";
push @scripts, $self->localize_file_path($script);
my $orig = $self->localize_file_path("t/bin/$base");
$self->copy_if_modified(
from => $orig,
to_dir => $to_dir,
flatten => 1,
);
}
$self->fix_shebang_line(@scripts);
$self->make_executable(@scripts);
$self->add_to_cleanup($to_dir);
}
},
( run in 1.932 second using v1.01-cache-2.11-cpan-39bf76dae61 )