summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-24 18:31:18 -0500
committerJeff Carr <[email protected]>2025-10-24 18:31:18 -0500
commita9eef24fd4378f0f94897b0d3fd2eb8092f50c8b (patch)
tree6f6d00cc53abd72e6e8a473fcfbb3eb7ad170dfb /main.go
parent2f4fbe24bd3e41394358b7c4fc62836cf5411f7e (diff)
s/ENV/env/ but ENV really is better herev0.22.133
Diffstat (limited to 'main.go')
-rw-r--r--main.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.go b/main.go
index 82b6721..13e137c 100644
--- a/main.go
+++ b/main.go
@@ -6,7 +6,7 @@ import (
"net/http"
"strings"
- "go.wit.com/lib/ENV"
+ "go.wit.com/lib/env"
"go.wit.com/lib/protobuf/argvpb"
"go.wit.com/lib/protobuf/forgepb"
"go.wit.com/lib/protobuf/gitpb"
@@ -77,7 +77,7 @@ func newMakeRepomap() (string, error) {
r.State = val
submit.Append(r)
}
- server := ENV.Get("ForgeURL")
+ server := env.Get("ForgeURL")
updatepb, regPB, err := submit.HttpPost(server, "check")
if err != nil {
log.Info("ReposPB HttpPost() failed", err)