From d25fb7887fd26f8b9cf2fe32e3442e8792060540 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 8f30ebc..d2bd37e 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