aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/pkg/compress.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/pkg/compress.go')
-rw-r--r--internal/pkg/compress.go2
1 files changed, 1 insertions, 1 deletions
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 != "" {