Sometimes I see an error creating the wrapper - it dies at line 148. Could you please replace this:
# write code to a tempfile for execution
my $wrapper_name = _temp_filename( 'CPAN-Reporter-CW-' );
my $wrapper_fh = IO::File->new( $wrapper_name, 'w' )
or die "Could not create a wrapper for $cmd\: $!";
with this?
# write code to a tempfile for execution
my $wrapper_name = _temp_filename( 'CPAN-Reporter-CW-' );
my $wrapper_fh = IO::File->new( $wrapper_name, 'w' )
or die "Could not create a wrapper ($wrapper_name) for $cmd\: $!";
Sometimes I see an error creating the wrapper - it dies at line 148. Could you please replace this:
with this?