feat(extract): add zpaq support (#11478)

This commit is contained in:
david 2023-02-05 11:32:49 +04:00 committed by GitHub
commit 9b91e82560
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 1 deletions

View file

@ -73,6 +73,7 @@ EOF
(*.zst) unzstd "$file" ;;
(*.cab) cabextract -d "$extract_dir" "$file" ;;
(*.cpio) cpio -idmvF "$file" ;;
(*.zpaq) zpaq x "$file" ;;
(*)
echo "extract: '$file' cannot be extracted" >&2
success=1 ;;