From 9e167741d84a89ac9569f0c977ba6be9e34d369f Mon Sep 17 00:00:00 2001 From: joshvanl Date: Fri, 16 Feb 2024 17:23:07 +0000 Subject: [PATCH] Fix func name call Signed-off-by: joshvanl --- pkg/standalone/run.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/standalone/run.go b/pkg/standalone/run.go index 7e7e5c9d0..6b4156e5a 100644 --- a/pkg/standalone/run.go +++ b/pkg/standalone/run.go @@ -113,7 +113,7 @@ func (config *RunConfig) validateResourcesPaths() error { } } componentsLoader := components.NewLocalComponents(dirPath...) - _, err := componentsLoader.LoadComponents() + _, err := componentsLoader.Load() if err != nil { return fmt.Errorf("error validating components in resources path %q : %w", dirPath, err) }