From 559638ea7e260369d914b6432b9ac748e35268e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mos=C3=A8=20Giordano?= Date: Tue, 15 Jul 2025 20:33:57 +0100 Subject: [PATCH] [Prefix] Actually pass `compression_format` argument to `archive_artifact` --- Project.toml | 2 +- src/Prefix.jl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Project.toml b/Project.toml index 642aad27..7355e3a8 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "BinaryBuilderBase" uuid = "7f725544-6523-48cd-82d1-3fa08ff4056e" authors = ["Elliot Saba "] -version = "1.39.0" +version = "1.39.1" [deps] Bzip2_jll = "6e34b625-4abd-537c-b88f-471c36dfa7a0" diff --git a/src/Prefix.jl b/src/Prefix.jl index 511d1f61..5f5abad9 100644 --- a/src/Prefix.jl +++ b/src/Prefix.jl @@ -202,7 +202,7 @@ function package(prefix::Prefix, @info("Tree hash of contents of $(basename(out_path)): $(tree_hash)") end - tarball_hash = archive_artifact(tree_hash, out_path; honor_overrides=false) + tarball_hash = archive_artifact(tree_hash, out_path; honor_overrides=false, compression_format) if verbose @info("SHA256 of $(basename(out_path)): $(tarball_hash)") end