From f11f1988e6c102fa052f75fb3b51d4929cf14619 Mon Sep 17 00:00:00 2001 From: "Thomas G. Lopes" Date: Thu, 19 Feb 2026 20:18:17 +0000 Subject: [PATCH] Handle repo paths without files dir --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index c6581fa..4af1ebe 100644 --- a/main.go +++ b/main.go @@ -156,7 +156,7 @@ func resolvePathSpec(pathSpec, repoAbs string) (string, string, error) { relPath := filepath.Join(parts[2:]...) return pkg, relPath, nil } - return pkg, "", nil + return pkg, filepath.Join(parts[1:]...), nil } }