You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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\: $!";
The text was updated successfully, but these errors were encountered:
Sometimes I see an error creating the wrapper - it dies at line 148. Could you please replace this:
with this?
The text was updated successfully, but these errors were encountered: