summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/main.go b/main.go
index 59fa1be..d99e502 100644
--- a/main.go
+++ b/main.go
@@ -8,7 +8,7 @@ import (
"path/filepath"
"time"
- "go.wit.com/lib/ENV"
+ "go.wit.com/lib/env"
"go.wit.com/lib/fhelp"
"go.wit.com/lib/gadgets"
"go.wit.com/lib/gui/shell"
@@ -24,7 +24,7 @@ var resources embed.FS
func main() {
me = new(autoType)
me.argv = argvpb.Autocomplete(&argv) // adds shell auto complete to go-args
- ENV.PrintTable()
+ env.PrintTable()
me.forge, _ = forgepb.Init()
me.found = new(gitpb.Repos)
@@ -38,7 +38,7 @@ func main() {
fhelp.CheckGoModCleanExit()
- os.Setenv("REPO_WORK_PATH", ENV.Get("gopath"))
+ os.Setenv("REPO_WORK_PATH", env.Get("gopath"))
// save the ENV var here
me.releaseReasonS = os.Getenv("GUIRELEASE_REASON")