diff options
| author | Jeff Carr <[email protected]> | 2025-10-24 18:30:50 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-24 18:30:50 -0500 |
| commit | 7b4f0639d861d104c67817e1f47816fa5e80b07d (patch) | |
| tree | 3f8f94b82376ae3538a0ad210c23e37b512bab95 /windowHowto.go | |
| parent | 1fc75cd8934b220db3814710c0a79d549fcf827f (diff) | |
s/ENV/env/ but ENV really is better herev0.25.100
Diffstat (limited to 'windowHowto.go')
| -rw-r--r-- | windowHowto.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/windowHowto.go b/windowHowto.go index 6a947d1..33672f9 100644 --- a/windowHowto.go +++ b/windowHowto.go @@ -6,7 +6,7 @@ package main // An app to submit patches for the 30 GO GUI repos import ( - "go.wit.com/lib/ENV" + "go.wit.com/lib/env" "go.wit.com/lib/gadgets" ) @@ -37,10 +37,10 @@ func makeHowtoWin() *gadgets.GenericWindow { grid.NewLabel("") // a stupid way to add padding grid.NextRow() - // howtoWin.Group.NewLabel("Working dir: " + ENV.Get("gopath")) + // howtoWin.Group.NewLabel("Working dir: " + env.Get("gopath")) grid = howtoWin.Group.RawGrid() - grid.NewButton("Download into "+ENV.Get("gopath"), func() { + grid.NewButton("Download into "+env.Get("gopath"), func() { howtoWin.Disable() defer howtoWin.Enable() doRebuildForge() |
