diff options
Diffstat (limited to 'vendor/github.com/hashicorp/hcl/testhelper')
-rw-r--r-- | vendor/github.com/hashicorp/hcl/testhelper/unix2dos.go | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/vendor/github.com/hashicorp/hcl/testhelper/unix2dos.go b/vendor/github.com/hashicorp/hcl/testhelper/unix2dos.go new file mode 100644 index 00000000..827ac6f1 --- /dev/null +++ b/vendor/github.com/hashicorp/hcl/testhelper/unix2dos.go @@ -0,0 +1,15 @@ +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) +} |