summaryrefslogtreecommitdiff
path: root/exit.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-26 10:17:06 -0500
committerJeff Carr <[email protected]>2025-10-26 10:17:06 -0500
commit456305122d43bdabf26a1c16f7f550de40cc2a5c (patch)
treee3b2bed4cb2b91affec92d969810c971f7a82787 /exit.go
parent9742ae6cf2345f1f37a3cd0f912bfcb341e5d44a (diff)
new argv (much better)
Diffstat (limited to 'exit.go')
-rw-r--r--exit.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/exit.go b/exit.go
index c09e912..d3aad10 100644
--- a/exit.go
+++ b/exit.go
@@ -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)
}