From 666a9b0c7759a05e41e9ad18e3fb01aaaac2d641 Mon Sep 17 00:00:00 2001 From: Sasha Koshka Date: Tue, 10 Dec 2024 02:53:54 -0500 Subject: [PATCH] cmd/step: Fix setting providers --- cmd/step/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/step/main.go b/cmd/step/main.go index ac18df4..291346f 100644 --- a/cmd/step/main.go +++ b/cmd/step/main.go @@ -31,7 +31,7 @@ func main () { // set up the environment environment := step.Environment { } - environment.FuncProviders = providers.All() + environment.Providers = providers.All() err := environment.Init(context.Background()) handleErr(cmd, err)