Skip to content

Commit

Permalink
Merge pull request #1495 from g7r/dont-merge-stderr-to-stdout
Browse files Browse the repository at this point in the history
Don't merge stderr to stdout
  • Loading branch information
james03160927 authored Jan 6, 2025
2 parents a746562 + 75535df commit 0721fbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/terraform/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ func RunTerraformCommandAndGetStdoutE(t testing.TestingT, additionalOptions *Opt
cmd := generateCommand(options, args...)
description := fmt.Sprintf("%s %v", options.TerraformBinary, args)
return retry.DoWithRetryableErrorsE(t, description, options.RetryableTerraformErrors, options.MaxRetries, options.TimeBetweenRetries, func() (string, error) {
s, err := shell.RunCommandAndGetOutputE(t, cmd)
s, err := shell.RunCommandAndGetStdOutE(t, cmd)
if err != nil {
return s, err
}
Expand Down

0 comments on commit 0721fbe

Please sign in to comment.