Removed non-portable xz options

Remove the "-T0" from the invocations of xz
This commit is contained in:
Arthur Williams 2021-10-18 02:08:34 -05:00
parent 1c743cea46
commit 11e28a4c9b
1 changed files with 2 additions and 2 deletions

4
kiss
View File

@ -193,7 +193,7 @@ decompress() {
*.lz) lzip -dc ;;
*.tar) cat ;;
*.tgz|*.gz) gzip -d ;;
*.xz|*.txz) xz -dcT0 ;;
*.xz|*.txz) xz -dc ;;
*.zst) zstd -dc ;;
esac < "$1"
}
@ -851,7 +851,7 @@ pkg_tar() {
gz) gzip -6 ;;
lzma) lzma -z ;;
lz) lzip -z ;;
xz) xz -zT0 ;;
xz) xz -z ;;
zst) zstd -z ;;
esac > "$_tar_file"