mirror of https://github.com/status-im/consul.git
tests: convert windows style path to posix style path to avoid hcl parsing error (#6351)
This commit is contained in:
parent
e231d62bc9
commit
216eb29d6b
|
@ -149,6 +149,10 @@ func (a *TestAgent) Start() (err error) {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("Error creating data dir %s: %s", filepath.Join(TempDir, name), err)
|
return fmt.Errorf("Error creating data dir %s: %s", filepath.Join(TempDir, name), err)
|
||||||
}
|
}
|
||||||
|
// Convert windows style path to posix style path
|
||||||
|
// to avoid illegal char escape error when hcl
|
||||||
|
// parsing.
|
||||||
|
d = filepath.ToSlash(d)
|
||||||
hclDataDir = `data_dir = "` + d + `"`
|
hclDataDir = `data_dir = "` + d + `"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue