diff options
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) } |
