summaryrefslogtreecommitdiff
path: root/doVerify.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-24 18:30:50 -0500
committerJeff Carr <[email protected]>2025-10-24 18:30:50 -0500
commit7b4f0639d861d104c67817e1f47816fa5e80b07d (patch)
tree3f8f94b82376ae3538a0ad210c23e37b512bab95 /doVerify.go
parent1fc75cd8934b220db3814710c0a79d549fcf827f (diff)
s/ENV/env/ but ENV really is better herev0.25.100
Diffstat (limited to 'doVerify.go')
-rw-r--r--doVerify.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/doVerify.go b/doVerify.go
index c9b9cc4..97d7b3f 100644
--- a/doVerify.go
+++ b/doVerify.go
@@ -7,7 +7,7 @@ import (
"errors"
"path/filepath"
- "go.wit.com/lib/ENV"
+ "go.wit.com/lib/env"
"go.wit.com/lib/protobuf/argvpb"
"go.wit.com/lib/protobuf/gitpb"
"go.wit.com/log"
@@ -30,7 +30,7 @@ func doVerify() (string, error) {
func cleanNamespace(r *gitpb.Repo) string {
// check for GO repos
- gowork := ENV.Get("gopath")
+ gowork := env.Get("gopath")
// todo: detect if using go.work file
newpath, err := filepath.Rel(gowork, r.FullPath)
// log.Info("cleanNamespace()", newpath, gowork, "is gowork. fullpath:", r.FullPath)