summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/hashicorp/hcl/testhelper/unix2dos.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/hashicorp/hcl/testhelper/unix2dos.go')
-rw-r--r--vendor/github.com/hashicorp/hcl/testhelper/unix2dos.go15
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 000000000..827ac6f1e
--- /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)
+}