diff --git a/realize/projects.go b/realize/projects.go index 60a8684..3abab69 100644 --- a/realize/projects.go +++ b/realize/projects.go @@ -673,7 +673,7 @@ func (c *Command) exec(base string, stop <-chan bool) (response Response) { response.Name = c.Cmd response.Out = stdout.String() if err != nil { - response.Err = errors.New(stderr.String()) + response.Err = errors.New(stderr.String() + stdout.String()) } } return