diff options
Diffstat (limited to 'exit.go')
| -rw-r--r-- | exit.go | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -2,16 +2,17 @@ package main import ( "go.wit.com/lib/env" + "go.wit.com/lib/protobuf/argvpb" "go.wit.com/log" ) func okExit(thing string) { log.Info(thing, "ok") // log.Info("Finished go-clean on", check.GetNamespace(), "ok") - me.argv.GoodExit(thing) + argvpb.GoodExit(thing) } func badExit(err error) { log.Info("forge failed: ", err, env.Get("gopath")) - me.argv.BadExit("guireleaser", err) + argvpb.BadExit("guireleaser", err) } |
