Skip to content

Commit

Permalink
chore: bump version for release
Browse files Browse the repository at this point in the history
  • Loading branch information
glasswalk3r committed Apr 16, 2024
1 parent 08fca17 commit d42aef4
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions lib/Archive/Tar/Wrapper.pm
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ use IPC::Open3;
use Symbol 'gensym';
use Carp;

our $VERSION = '0.38';
our $VERSION = '0.39';
my $logger = get_logger();

=pod
Expand Down Expand Up @@ -336,7 +336,7 @@ sub _read_solaris_opts {
$cmd[-1] .= $compress_opt;
}

$cmd[-1] .='f';
$cmd[-1] .= 'f';

push( @cmd, $self->{tar_read_options} )
if ( $self->{tar_read_options} ne '' );
Expand Down Expand Up @@ -392,8 +392,7 @@ sub read { ## no critic (ProhibitBuiltinHomonyms)
@cmd = (
$self->{tar},
"${compr_opt}x$self->{tar_read_options}",
@{ $self->{tar_gnu_read_options} },
'-f'
@{ $self->{tar_gnu_read_options} }, '-f'
);
}

Expand Down

0 comments on commit d42aef4

Please sign in to comment.