Skip to content

Commit

Permalink
decompress mulitpart tars
Browse files Browse the repository at this point in the history
  • Loading branch information
nkraetzschmar authored and gehoern committed Nov 19, 2024
1 parent d19299e commit 29a3535
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion download_pkgs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 29a3535

Please sign in to comment.