From f77fc4ef5f2df96c6bba3cd6c7d88a77d61a5a80 Mon Sep 17 00:00:00 2001 From: ewy Date: Tue, 2 Jun 2026 15:07:59 +0200 Subject: add .wants and .includes .wants adds potential out-of-tree sources to your state (for monorepos, for example) .includes adds targets from another source to this one, adding inheritance --- indexers/pikdex/hydrate.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'indexers/pikdex/hydrate.go') diff --git a/indexers/pikdex/hydrate.go b/indexers/pikdex/hydrate.go index 1f71992..a0dfc2b 100644 --- a/indexers/pikdex/hydrate.go +++ b/indexers/pikdex/hydrate.go @@ -6,7 +6,7 @@ import ( ) func (u *pikdex) Mod(src *model.Source, result *model.HydratedSource) error { - mod := u.mods[strings.TrimSuffix(src.Path, "/")] + mod := u.Data[strings.TrimSuffix(src.Path, "/")] if mod.Path != "" { if mod.Aliases != nil { result.Aliases = append(result.Aliases, mod.Aliases...) -- cgit v1.3.1