summaryrefslogtreecommitdiff
path: root/shell.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-01-29 20:43:14 -0600
committerJeff Carr <[email protected]>2025-01-29 20:43:14 -0600
commit7ba0c49ee329dacc479f61ef76518210c565afed (patch)
treebcaca3759a7a34e4f993b372377580f296c96bce /shell.go
parentb57144e6bfe8a6b63d2d2f8ffb47af04a926ae8b (diff)
notsurev0.0.67
Diffstat (limited to 'shell.go')
-rw-r--r--shell.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell.go b/shell.go
index c8131f6..8a51a36 100644
--- a/shell.go
+++ b/shell.go
@@ -77,7 +77,7 @@ func (repo *Repo) RunStrictNew(cmd []string) (*cmd.Status, error) {
return &result, result.Error
}
if result.Exit != 0 {
- log.Warn(cmd, "failed with", result.Exit)
+ log.Warn(cmd, "failed with", result.Exit, repo.GetGoPath())
return &result, errors.New(fmt.Sprint(cmd, "failed with", result.Exit))
}
return &result, nil