summaryrefslogtreecommitdiff
path: root/Ports
diff options
context:
space:
mode:
authorMike Swanson <mikeonthecomputer@gmail.com>2023-05-11 14:40:02 -0700
committerAndreas Kling <kling@serenityos.org>2023-05-12 05:36:47 +0200
commit5a1c0c6836c3c6462145a6943b8df9bf169ebccc (patch)
tree741be631166a29100b1c0906526b096789aac287 /Ports
parent99de0b2c14b2ffbd74f3a32e50f89fc3a14025f3 (diff)
downloadserenity-5a1c0c6836c3c6462145a6943b8df9bf169ebccc.zip
Ports: Support extracting *.tar.zst source archives
Diffstat (limited to 'Ports')
-rwxr-xr-xPorts/.port_include.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/Ports/.port_include.sh b/Ports/.port_include.sh
index 04c6f3a7a1..8c574bcdb1 100755
--- a/Ports/.port_include.sh
+++ b/Ports/.port_include.sh
@@ -410,7 +410,7 @@ fetch() {
run_nocd tar -xzf "${PORT_META_DIR}/${filename}"
run touch .${filename}_extracted
;;
- *.tar.gz|*.tar.bz|*.tar.bz2|*.tar.xz|*.tar.lz|.tbz*|*.txz|*.tgz)
+ *.tar.gz|*.tar.bz|*.tar.bz2|*.tar.xz|*.tar.lz|*.tar.zst|.tbz*|*.txz|*.tgz)
run_nocd tar -xf "${PORT_META_DIR}/${filename}"
run touch .${filename}_extracted
;;