Skip to content

Commit

Permalink
Remove --strip 1
Browse files Browse the repository at this point in the history
  • Loading branch information
chee committed Feb 26, 2019
1 parent bccf3f6 commit d5d0ccf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/tarballs
Expand Up @@ -35,7 +35,7 @@ sub decrypt-pathword ($pathword) {
}

sub untar (Blob $tarball, Str $path) {
my $tar = Proc::Async.new: :w, tar, --strip, 1, -U, -C, $path, -xzv;
my $tar = Proc::Async.new: :w, tar, -U, -C, $path, -xzv;
my $completion = $tar.start;
$tar.write($tarball);
$tar.close-stdin;
Expand Down

0 comments on commit d5d0ccf

Please sign in to comment.