diff options
| author | Jeff Carr <[email protected]> | 2025-10-22 09:18:35 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-22 09:18:35 -0500 |
| commit | 26994805b3ecd5f4c5fcab5913b5afdeb35c2c73 (patch) | |
| tree | c2a629b0ff461b853b6fbb35b7e88568ab625ac1 /exit.go | |
| parent | 2bbc498b02cbbe3ba68de391bffbe79ab0f226fc (diff) | |
step1
Diffstat (limited to 'exit.go')
| -rw-r--r-- | exit.go | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -2,6 +2,7 @@ package main import ( "fmt" + "path/filepath" "go.wit.com/lib/protobuf/gitpb" "go.wit.com/log" @@ -21,6 +22,7 @@ func badExit(check *gitpb.Repo, err error) { eraseGoMod(check) } } - s := fmt.Sprintf("failed: %s", me.forge.Config.ReposDir) + fullpath := filepath.Join(check.FullPath) + s := fmt.Sprintf("failed in %s", fullpath) me.argv.BadExit(s, err) } |
