From fbe2caaeb1550e0c29a98485e351d781b1150919 Mon Sep 17 00:00:00 2001 From: Erik Schnetter Date: Mon, 3 Nov 2025 14:43:35 -0500 Subject: [PATCH] Support `.tbz` archive extension --- src/Sources.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Sources.jl b/src/Sources.jl index 96681898..ab53fa67 100644 --- a/src/Sources.jl +++ b/src/Sources.jl @@ -62,7 +62,7 @@ ArchiveSource(url::String, hash::String; unpack_target::String = "") = ArchiveSource(url, hash, unpack_target) # List of optionally compressed TAR archives that we know how to deal with -const tar_extensions = [".tar", ".tar.gz", ".tgz", ".tar.bz", ".tar.bz2", +const tar_extensions = [".tar", ".tar.gz", ".tgz", ".tar.bz", ".tar.bz2", ".tbz", ".tar.xz", ".tar.Z", ".txz", ".tar.zst"] # List of general archives that we know about const archive_extensions = vcat(tar_extensions, ".zip", ".conda")