diff options
| author | Jeff Carr <[email protected]> | 2025-09-11 14:21:09 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-09-11 14:21:09 -0500 |
| commit | b05b706d8b48a51275a8dc0c90cd8fafc74d61d1 (patch) | |
| tree | 489a39cafeda829ac3a97a26a8c599f07ef0a343 /exit.go | |
| parent | fd199a4404f7675935660c6975ac25ba6c84aba1 (diff) | |
raw gitpb Repo() scan
Diffstat (limited to 'exit.go')
| -rw-r--r-- | exit.go | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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) } |
