summaryrefslogtreecommitdiff
path: root/exit.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-09-11 22:14:41 -0500
committerJeff Carr <[email protected]>2025-09-11 22:14:41 -0500
commitfd2254cd72ed2f74bd4133fd1db7fc0324f9f872 (patch)
treed77773f84049f0b85639c2e59dfe7f89fca18066 /exit.go
parentd813ade5aba8f49695c831469030ad7b83ef35e6 (diff)
stop using GoSrc()
Diffstat (limited to 'exit.go')
-rw-r--r--exit.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/exit.go b/exit.go
index 7b8b027..1927726 100644
--- a/exit.go
+++ b/exit.go
@@ -8,11 +8,11 @@ import (
func okExit(thing string) {
log.Info(thing, "ok")
- // log.Info("Finished go-clean on", check.GetGoPath(), "ok")
+ // log.Info("Finished go-clean on", check.GetNamespace(), "ok")
os.Exit(0)
}
func badExit(err error) {
- log.Info("forge failed: ", err, me.forge.GetGoSrc())
+ log.Info("forge failed: ", err, me.forge.Config.ReposDir)
os.Exit(-1)
}