Sign in
gdch-oss
/
third_party
/
hashicorp
/
terraform-exec
/
84615a4bc0370c0d1b60281e856184f05d4cf10e
/
.
/
tfexec
/
cmdstring.go
blob: 4f81d1148e5ffaf611c26bdd5c3e9f70162d6668 [
file
] [
log
] [
blame
]
// +build go1.13
package tfexec
import (
"os/exec"
)
// cmdString handles go 1.12 as stringer was only added to exec.Cmd in 1.13
func cmdString(c *exec.Cmd) string {
return c.String()
}