summaryrefslogtreecommitdiff
path: root/doVerify.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-20 13:19:24 -0500
committerJeff Carr <[email protected]>2025-10-20 13:19:24 -0500
commit898592febc56eb1073525636666063396d85aca6 (patch)
tree507d33eefc9ba5d467c2c5ce829bdd13968f92e8 /doVerify.go
parent3246e9b1f7ba7b983ca536f06d1dbbb636d1ad5b (diff)
notsure
Diffstat (limited to 'doVerify.go')
-rw-r--r--doVerify.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/doVerify.go b/doVerify.go
index 8b7811f..5790fde 100644
--- a/doVerify.go
+++ b/doVerify.go
@@ -7,6 +7,7 @@ import (
"errors"
"path/filepath"
+ "go.wit.com/lib/config"
"go.wit.com/lib/protobuf/argvpb"
"go.wit.com/lib/protobuf/gitpb"
"go.wit.com/log"
@@ -29,7 +30,7 @@ func doVerify() (string, error) {
func cleanNamespace(r *gitpb.Repo) string {
// check for GO repos
- gowork := me.forge.Config.ReposDir
+ gowork := config.Get("ReposDir")
// todo: detect if using go.work file
newpath, err := filepath.Rel(gowork, r.FullPath)
// log.Info("cleanNamespace()", newpath, gowork, "is gowork. fullpath:", r.FullPath)