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/net.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'internal/pkg/net.go') diff --git a/internal/pkg/net.go b/internal/pkg/net.go index 74eeca53..074c5f79 100644 --- a/internal/pkg/net.go +++ b/internal/pkg/net.go @@ -101,7 +101,7 @@ func (a *httpArtifact) do() (data []byte, err error) { } // Cure returns syscall.ENOTSUP. Callers should use Data instead. -func (a *httpArtifact) Cure(*check.Absolute, CacheDataFunc) error { +func (a *httpArtifact) Cure(*check.Absolute, *check.Absolute, CacheDataFunc) error { return syscall.ENOTSUP } -- cgit v1.3.1