From 3b877b39b424ded0f776d1dc71d07616a47bfbd4 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Fri, 17 May 2024 17:02:00 +0200 Subject: fix: store only data from current entity in index --- internal/importer/options.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'internal/importer/options.go') diff --git a/internal/importer/options.go b/internal/importer/options.go index 1247681..51a6eb4 100644 --- a/internal/importer/options.go +++ b/internal/importer/options.go @@ -120,7 +120,6 @@ func (i *OptionIngester) Process(parent context.Context) (<-chan nix.Importable, var decls []*nix.Link for _, decl := range x["declarations"].([]interface{}) { - i.optJSON = nixOptionJSON{} switch decl := reflect.ValueOf(decl); decl.Kind() { case reflect.String: @@ -152,6 +151,7 @@ func (i *OptionIngester) Process(parent context.Context) (<-chan nix.Importable, x["declarations"] = decls } + i.optJSON = nixOptionJSON{} err := i.ms.Decode(x) // stores in optJSON if err != nil { errs <- errors.WithMessagef(err, "failed to decode option %#v", x) -- cgit 1.4.1