diff options
| author | Jeff Carr <[email protected]> | 2025-10-16 02:48:40 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-16 02:48:40 -0500 |
| commit | 8bd07db7b0106f9e91f7a4f393d73e61decb8b13 (patch) | |
| tree | 1afdfa6efa9946c177c87fb9783e548671bbb8e3 | |
| parent | 1c24f390243505928975bbb8bca88105c222a5f7 (diff) | |
more debugging. is there an err on filepath.Rel() ?
| -rw-r--r-- | doVerify.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doVerify.go b/doVerify.go index a87b65a..39019a0 100644 --- a/doVerify.go +++ b/doVerify.go @@ -32,6 +32,7 @@ func cleanNamespace(r *gitpb.Repo) string { newpath, err := filepath.Rel(gowork, r.FullPath) log.Info(newpath, gowork, "is gowork. fullpath:", r.FullPath) if err != nil { + log.Info("cleanNamespace got err", newpath, err) // relative path to gosrc or gowork is the namespace return newpath } |
