summaryrefslogtreecommitdiff
path: root/exit.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-09-11 14:21:09 -0500
committerJeff Carr <[email protected]>2025-09-11 14:21:09 -0500
commitb05b706d8b48a51275a8dc0c90cd8fafc74d61d1 (patch)
tree489a39cafeda829ac3a97a26a8c599f07ef0a343 /exit.go
parentfd199a4404f7675935660c6975ac25ba6c84aba1 (diff)
raw gitpb Repo() scan
Diffstat (limited to 'exit.go')
-rw-r--r--exit.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/exit.go b/exit.go
index 5ddbcf6..43051d4 100644
--- a/exit.go
+++ b/exit.go
@@ -7,7 +7,9 @@ import (
)
func okExit(thing string) {
- log.Info(thing, "ok")
+ if thing != "" {
+ log.Info(thing, "ok")
+ }
// log.Info("Finished go-clean on", check.GetGoPath(), "ok")
os.Exit(0)
}