Sign in
third-party-mirror
/
golang
/
hashicorp
/
hcl
/
03ccb17c49038030a26f0d05e9be1357a319e59d
/
.
/
testhelper
/
unix2dos.go
blob: 827ac6f1ed981ceb65e4b891e6869de64fdc1ade [
file
] [
log
] [
blame
]
package testhelper
import (
"runtime"
"strings"
)
// Converts the line endings when on Windows
func Unix2dos(unix string) string {
if runtime.GOOS != "windows" {
return unix
}
return strings.Replace(unix, "\n", "\r\n", -1)
}