From d5d0ccfcd2905d45fafeaaac62b13f76953903eb Mon Sep 17 00:00:00 2001 From: chee Date: Tue, 26 Feb 2019 14:22:41 +0000 Subject: [PATCH] Remove --strip 1 --- bin/tarballs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/tarballs b/bin/tarballs index b5c63f3..96bda35 100755 --- a/bin/tarballs +++ b/bin/tarballs @@ -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;