summaryrefslogtreecommitdiff
path: root/finalGoDepsCheckOk.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-24 18:31:04 -0500
committerJeff Carr <[email protected]>2025-10-24 18:31:04 -0500
commit9742ae6cf2345f1f37a3cd0f912bfcb341e5d44a (patch)
tree83c28c03c5df70e2141334abfa503837ad516609 /finalGoDepsCheckOk.go
parentf0b53049f320dcb148d9cb5659c51fa1b432290c (diff)
s/ENV/env/ but ENV really is better herev0.23.149
Diffstat (limited to 'finalGoDepsCheckOk.go')
-rw-r--r--finalGoDepsCheckOk.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/finalGoDepsCheckOk.go b/finalGoDepsCheckOk.go
index 6b0c2a1..6cdbaec 100644
--- a/finalGoDepsCheckOk.go
+++ b/finalGoDepsCheckOk.go
@@ -6,7 +6,7 @@ import (
"os"
"path/filepath"
- "go.wit.com/lib/ENV"
+ "go.wit.com/lib/env"
"go.wit.com/lib/protobuf/gitpb"
"go.wit.com/log"
)
@@ -31,7 +31,7 @@ func testGoDepsCheckOk(godeps *gitpb.GoDeps) error {
all := godeps.SortByGoPath()
for all.Scan() {
depRepo := all.Next()
- fullpath := filepath.Join(ENV.Get("gopath"), depRepo.GoPath)
+ fullpath := filepath.Join(env.Get("gopath"), depRepo.GoPath)
found := me.found.FindByFullPath(fullpath)
if found == nil {
continue