Pass -J to tar for xz decompression

Some tar implementations can't auto-detect compression formats, so
they must be specified explicitly.
This commit is contained in:
Michael Forney 2019-12-22 00:06:51 -08:00
parent aaf57c983d
commit 43eb7b6756
1 changed files with 1 additions and 1 deletions

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)