From db69dcf0be0c1be4e3187027fa4199538013e76d Mon Sep 17 00:00:00 2001 From: Ophestra Date: Thu, 4 Jun 2026 18:37:07 +0900 Subject: internal/pkg: remove tar built-in decompressor This is replaced by decompressArtifact and is no longer necessary. Signed-off-by: Ophestra --- internal/pkg/compress.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'internal/pkg/compress.go') diff --git a/internal/pkg/compress.go b/internal/pkg/compress.go index 310fe065..a683c816 100644 --- a/internal/pkg/compress.go +++ b/internal/pkg/compress.go @@ -36,7 +36,7 @@ type decompressArtifactNamed struct { var _ fmt.Stringer = new(decompressArtifactNamed) // NewDecompress returns a [FileArtifact] decompressing the supplied [Artifact]. -func NewDecompress(a Artifact, compress uint32) Artifact { +func NewDecompress(a Artifact, compress uint32) FileArtifact { da := decompressArtifact{a, compress} if s, ok := a.(fmt.Stringer); ok { if name := s.String(); name != "" { -- cgit v1.3.1