summaryrefslogtreecommitdiff
path: root/exit.go
diff options
context:
space:
mode:
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)
}