diff options
| author | Jeff Carr <[email protected]> | 2025-10-24 18:31:04 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-24 18:31:04 -0500 |
| commit | 9742ae6cf2345f1f37a3cd0f912bfcb341e5d44a (patch) | |
| tree | 83c28c03c5df70e2141334abfa503837ad516609 /main.go | |
| parent | f0b53049f320dcb148d9cb5659c51fa1b432290c (diff) | |
s/ENV/env/ but ENV really is better herev0.23.149
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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") |
