aboutsummaryrefslogtreecommitdiffhomepage
path: root/cmd
diff options
context:
space:
mode:
Diffstat (limited to 'cmd')
-rw-r--r--cmd/mbf/main.go2
1 files changed, 1 insertions, 1 deletions
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))