From 58c9266dd6cd2c07e5bc590693d2ae39237004bc Mon Sep 17 00:00:00 2001 From: Sasha Koshka Date: Thu, 12 Dec 2024 00:27:34 -0500 Subject: [PATCH] providers/import: Reading the config actually works now --- providers/import/import.go | 1 + 1 file changed, 1 insertion(+) diff --git a/providers/import/import.go b/providers/import/import.go index 928c110..dc8a371 100644 --- a/providers/import/import.go +++ b/providers/import/import.go @@ -21,6 +21,7 @@ func (this *Provider) Package () string { } func (this *Provider) Configure (config step.Meta) error { + this.config = config return nil }