summaryrefslogtreecommitdiff
path: root/exit.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-24 18:30:50 -0500
committerJeff Carr <[email protected]>2025-10-24 18:30:50 -0500
commit7b4f0639d861d104c67817e1f47816fa5e80b07d (patch)
tree3f8f94b82376ae3538a0ad210c23e37b512bab95 /exit.go
parent1fc75cd8934b220db3814710c0a79d549fcf827f (diff)
s/ENV/env/ but ENV really is better herev0.25.100
Diffstat (limited to 'exit.go')
-rw-r--r--exit.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/exit.go b/exit.go
index 62714a2..4f21c7c 100644
--- a/exit.go
+++ b/exit.go
@@ -4,7 +4,7 @@
package main
import (
- "go.wit.com/lib/ENV"
+ "go.wit.com/lib/env"
"go.wit.com/lib/protobuf/gitpb"
"go.wit.com/log"
)
@@ -14,8 +14,8 @@ import (
// hopefully will allow the GUI plugins to unload properly
func forgeExit() {
resetTerminalTitle()
- if ENV.Verbose() {
- log.Info("argv.Exit() got to forge.Exit() because ENV.Verbose() was true")
+ if env.Verbose() {
+ log.Info("argv.Exit() got to forge.Exit() because env.Verbose() was true")
}
// me.forge.SetConfigSave(configSave)
if err := me.forge.Close(); err != nil {