From 5e71045120ba15087b45ba7a46b8dc12532e87c7 Mon Sep 17 00:00:00 2001 From: ewy Date: Sun, 17 May 2026 01:56:44 +0200 Subject: fix existing tests and import loop --- runner/base.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'runner/base.go') diff --git a/runner/base.go b/runner/base.go index b3013b3..4fcd3d0 100644 --- a/runner/base.go +++ b/runner/base.go @@ -2,8 +2,8 @@ package runner import ( "github.com/ewy1/pik/identity" - "github.com/ewy1/pik/indexers/pikdex" "github.com/ewy1/pik/model" + "github.com/ewy1/pik/paths" "path/filepath" "slices" "strings" @@ -21,7 +21,7 @@ func SubFromFile(file string) []string { var sub []string split := strings.Split(file, "/") for _, p := range split { - if slices.Contains(pikdex.Roots, p) { + if slices.Contains(paths.Roots, p) { continue } if filename == p { -- cgit v1.3.1