diff options
| author | Jeff Carr <[email protected]> | 2025-10-24 18:30:54 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-24 18:30:54 -0500 |
| commit | 5314952e14cedbb1d5827f66827c16a58ae05096 (patch) | |
| tree | 26c099e92b0bfe2af6d5d66b8d5ffaf2922b8418 /work.go | |
| parent | cd341e123d428ab26e92c32fa6eed96ba7a4c15e (diff) | |
s/ENV/env/ but ENV really is better herev0.7.114
Diffstat (limited to 'work.go')
| -rw-r--r-- | work.go | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,7 +1,7 @@ package main import ( - "go.wit.com/lib/ENV" + "go.wit.com/lib/env" "go.wit.com/lib/gui/shell" "go.wit.com/log" ) @@ -11,10 +11,10 @@ func autoWork() { if !argv.AutoWork { return } - log.Info("About to re-create", ENV.Get("gopath")+"/go.work") - shell.PathRun(ENV.Get("gopath"), []string{"mv", "go.work", "go.work.last"}) + log.Info("About to re-create", env.Get("gopath")+"/go.work") + shell.PathRun(env.Get("gopath"), []string{"mv", "go.work", "go.work.last"}) me.forge.MakeGoWork() - shell.PathRun(ENV.Get("gopath"), []string{"go", "work", "use"}) + shell.PathRun(env.Get("gopath"), []string{"go", "work", "use"}) log.Info("") log.Info("original go.work file saved as go.work.last") log.Info("") |
