Merge pull request #3431 from pmiddend/install-script-test-for-xz

installer: also test for xz to unpack
This commit is contained in:
Domen Kožar 2020-03-21 10:40:16 +01:00 committed by GitHub
commit 7bc1961e1f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -36,6 +36,7 @@ tarball="$tmpDir/$(basename "$tmpDir/nix-@nixVersion@-$system.tar.xz")"
require_util curl "download the binary tarball"
require_util tar "unpack the binary tarball"
require_util xz "unpack the binary tarball"
echo "downloading Nix @nixVersion@ binary tarball for $system from '$url' to '$tmpDir'..."
curl -L "$url" -o "$tarball" || oops "failed to download '$url'"