From 29a353537e395bc74689fd0f8ae83e212fcb9228 Mon Sep 17 00:00:00 2001 From: nkraetzschmar <9020053+nkraetzschmar@users.noreply.github.com> Date: Thu, 24 Oct 2024 09:35:28 +0200 Subject: [PATCH] decompress mulitpart tars --- download_pkgs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/download_pkgs b/download_pkgs index 5e0b6a7..8dfbdd2 100755 --- a/download_pkgs +++ b/download_pkgs @@ -18,7 +18,7 @@ while read -r repo tag; do gh release download --dir download --repo "$repo" "$tag" if [ -e download/build.tar.xz.0000 ]; then set +f - cat download/build.tar.xz.* | tar -C download -x + cat download/build.tar.xz.* | xz -d | tar -C download -x rm download/build.tar.xz.* set -f fi