diff options
| -rw-r--r-- | argv.template.go | 4 | ||||
| -rw-r--r-- | doMtime.go | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/argv.template.go b/argv.template.go index 9949255..4e6f4f7 100644 --- a/argv.template.go +++ b/argv.template.go @@ -10,7 +10,7 @@ import ( "go.wit.com/dev/alexflint/arg" "go.wit.com/gui" - "go.wit.com/lib/ENV" + "go.wit.com/lib/env" "go.wit.com/log" ) @@ -55,7 +55,7 @@ func (args) WriteHelp() error { func (args) Exit() { gui.UnloadToolkits() - if ENV.Verbose() { + if env.Verbose() { log.Info("argv.Exit() called", APPNAME+".Exit()") } // remove this from the template for your app (or make one for youself if you need it) @@ -14,7 +14,7 @@ import ( "os" "path/filepath" - "go.wit.com/lib/ENV" + "go.wit.com/lib/env" "go.wit.com/log" ) @@ -66,7 +66,7 @@ func doMtime(filebase string) bool { return false } } - if ENV.Verbose() { + if env.Verbose() { log.Info(filebase + ".proto was older than all pb.go files. No need to re-run autogenpb.") } if allerr == nil { |
