Merge pull request #3289 from michaelforney/tar-J

Pass -J to tar for xz decompression
This commit is contained in:
Eelco Dolstra 2019-12-25 13:07:58 +01:00 committed by GitHub
commit b0cadf547b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -56,7 +56,7 @@ fi
unpack=$tmpDir/unpack
mkdir -p "$unpack"
tar -xf "$tarball" -C "$unpack" || oops "failed to unpack '$url'"
tar -xJf "$tarball" -C "$unpack" || oops "failed to unpack '$url'"
script=$(echo "$unpack"/*/install)