summaryrefslogtreecommitdiff
path: root/exit.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-22 09:18:42 -0500
committerJeff Carr <[email protected]>2025-10-22 09:18:42 -0500
commit1b2ddac942d525bb543fe21b00b4abf692f599fb (patch)
tree8e72c1e14a7b21de81144ddb0a1bcd838fc6c9c7 /exit.go
parent9836434ac9ac1313e5fd3ce4675fbf6dac4421e2 (diff)
step1
Diffstat (limited to 'exit.go')
-rw-r--r--exit.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/exit.go b/exit.go
index 91a4c99..80a2423 100644
--- a/exit.go
+++ b/exit.go
@@ -1,6 +1,7 @@
package main
import (
+ "go.wit.com/lib/ENV"
"go.wit.com/log"
)
@@ -11,6 +12,6 @@ func okExit(thing string) {
}
func badExit(err error) {
- log.Info("forge failed: ", err, me.forge.Config.ReposDir)
+ log.Info("forge failed: ", err, ENV.Get("gopath"))
me.argv.BadExit("guireleaser", err)
}