From f3aa31e401e58ea20aa0c0fd09b55f237bbfb54a Mon Sep 17 00:00:00 2001 From: Ophestra Date: Mon, 5 Jan 2026 01:05:27 +0900 Subject: internal/pkg: temporary scratch space for cure This allows for more flexibility during implementation. The use case that required this was for expanding single directory tarballs. Signed-off-by: Ophestra --- internal/pkg/tar.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'internal/pkg/tar.go') diff --git a/internal/pkg/tar.go b/internal/pkg/tar.go index 24411c50..ac36cf98 100644 --- a/internal/pkg/tar.go +++ b/internal/pkg/tar.go @@ -69,7 +69,7 @@ func (e DisallowedTypeflagError) Error() string { } // Cure cures the [Artifact], producing a directory located at work. -func (a *tarArtifact) Cure(work *check.Absolute, loadData CacheDataFunc) (err error) { +func (a *tarArtifact) Cure(work, temp *check.Absolute, loadData CacheDataFunc) (err error) { var tr io.ReadCloser { -- cgit v1.3.1