summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/hashicorp/hcl/testhelper/unix2dos.go
diff options
context:
space:
mode:
authorWim <wim@42.be>2018-03-04 23:46:13 +0100
committerWim <wim@42.be>2018-03-04 23:46:13 +0100
commit25a72113b122f984c904b24c4af23a1cba1eff45 (patch)
treef0fb7067d7c958d60ac964afa5b8d5fb79ebc339 /vendor/github.com/hashicorp/hcl/testhelper/unix2dos.go
parent79c4ad5015bd2be47b32141c6d53f0d128bf865b (diff)
downloadmatterbridge-msglm-25a72113b122f984c904b24c4af23a1cba1eff45.tar.gz
matterbridge-msglm-25a72113b122f984c904b24c4af23a1cba1eff45.tar.bz2
matterbridge-msglm-25a72113b122f984c904b24c4af23a1cba1eff45.zip
Add vendor files for spf13/viper
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 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)
+}