From b26bc05bb0c392e52e964061ec598f4487e14f08 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Thu, 29 Jan 2026 17:52:50 +0900 Subject: internal/rosa: remove unused receiver This returns the preset itself, it is up to the caller to load the underlying artifact. Signed-off-by: Ophestra --- cmd/mbf/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cmd/mbf') diff --git a/cmd/mbf/main.go b/cmd/mbf/main.go index d6980e58..db1c2c58 100644 --- a/cmd/mbf/main.go +++ b/cmd/mbf/main.go @@ -146,7 +146,7 @@ func main() { if len(args) != 1 { return errors.New("cure requires 1 argument") } - if p, ok := rosa.Std.ResolveName(args[0]); !ok { + if p, ok := rosa.ResolveName(args[0]); !ok { return fmt.Errorf("unsupported artifact %q", args[0]) } else { pathname, _, err := cache.Cure(rosa.Std.Load(p)) -- cgit v1.3.1