diff --git a/rally/runner.go b/rally/runner.go index c0e5f1c..f33108e 100644 --- a/rally/runner.go +++ b/rally/runner.go @@ -114,8 +114,9 @@ func (runner *PeriodicRunner) createDeployment() { } cmd := exec.Command("rally", "deployment", "create", "--filename", file.Name(), "--name", runner.CloudName) - _, err = cmd.Output() + output, err := cmd.CombinedOutput() if err != nil { + fmt.Println(string(output)) log.Fatal("Failed to install Rally deployment: ", err) } }