diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-06-04 18:37:07 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-06-04 18:54:43 +0900 |
| commit | db69dcf0be0c1be4e3187027fa4199538013e76d (patch) | |
| tree | 78513e0ec30c375af15270852d551f326c7f663f /internal/pkg/compress.go | |
| parent | 76c1fb84c87ba12a22b64f7c471a92603365837f (diff) | |
internal/pkg: remove tar built-in decompressor
This is replaced by decompressArtifact and is no longer necessary.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/pkg/compress.go')
| -rw-r--r-- | internal/pkg/compress.go | 2 |
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 != "" { |
