diff options
| author | Jeff Carr <[email protected]> | 2025-10-21 06:50:52 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-21 06:50:52 -0500 |
| commit | b79731472d70867f9e73cdeeb0917bc287170ee6 (patch) | |
| tree | bff33832f693dbd6795feac322ea895820333493 /exit.go | |
| parent | 46aae682f88cd9171e81d536d85436c2b6cfc469 (diff) | |
changed to ENV
Diffstat (limited to 'exit.go')
| -rw-r--r-- | exit.go | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -4,6 +4,7 @@ package main import ( + "go.wit.com/lib/ENV" "go.wit.com/lib/protobuf/gitpb" "go.wit.com/log" ) @@ -13,8 +14,8 @@ import ( // hopefully will allow the GUI plugins to unload properly func forgeExit() { resetTerminalTitle() - if me.argv.Verbose() { - log.Info("argv.Exit() got to forge.Exit() because me.argv.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 { |
