Skip to content

Commit

Permalink
pkgmk: unpack_source(): add .tar.zst and .tzst
Browse files Browse the repository at this point in the history
  • Loading branch information
sighook committed Apr 2, 2024
1 parent b290f11 commit 09672b6
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions pkgmk
Original file line number Diff line number Diff line change
Expand Up @@ -326,9 +326,10 @@ unpack_source() {
__LOCAL_FILENAME=$(get_filename "$__FILE")

case $__LOCAL_FILENAME in
*.tar | *.tar.gz | *.tar.Z | *.tgz | *.tar.bz2 | \
*.tbz2 | *.tar.xz | *.txz | *.tar.lzma | *.tar.lz | \
*.zip | *.rpm | *.7z | *.zst )
*.tar | *.tar.gz | *.tar.Z | *.tgz | *.tar.bz2 | \
*.tbz2 | *.tar.xz | *.txz | *.tar.lzma | *.tar.lz | \
*.tar.zst | *.tzst | *.zst | *.zip | *.rpm | \
*.7z)
# -p: preserve file permissions
# -o: use the user and group of the user
# running the program rather than those
Expand Down

0 comments on commit 09672b6

Please sign in to comment.