Skip to content

Commit

Permalink
clone should be working now.
Browse files Browse the repository at this point in the history
  • Loading branch information
Timofey Potapov committed Aug 7, 2024
1 parent d34f78f commit 2c5fee9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
name: Build distribution
runs-on: ubuntu-20.04
container:
image: perldocker/perl-tester:5.30
image: perldocker/perl-tester:5.38
steps:

- name: Checkout docker/package
Expand Down
4 changes: 2 additions & 2 deletions lib/e.pm
Original file line number Diff line number Diff line change
Expand Up @@ -846,7 +846,7 @@ sub import {
if ( !$imported{$caller}{"Storable"}++ ) {
require Storable;
}
Storable::dclone( @_ );
Storable::dclone( $_[0] );
},

# UTF-8 conversions.
Expand Down Expand Up @@ -1077,7 +1077,7 @@ sub import {

$pm->run_on_finish(
sub {
push @res, @{$_[-1]};
push @res, @{ $_[-1] };
}
);
for my $cb ( @_ ) {
Expand Down

0 comments on commit 2c5fee9

Please sign in to comment.