Browse Source

tests: convert windows style path to posix style path to avoid hcl parsing error (#6351)

pull/6569/head
gaoxinge 5 years ago committed by GitHub
parent
commit
216eb29d6b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      agent/testagent.go

4
agent/testagent.go

@ -149,6 +149,10 @@ func (a *TestAgent) Start() (err error) {
if err != nil {
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 + `"`
}

Loading…
Cancel
Save