summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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