Merge pull request #4792 from mkuzmin/slash

provisioner/ansible-local: Convert Windows paths with backslashes to …
pull/4843/head
Matthew Hooker 9 years ago committed by GitHub
commit 7999f886b1

@ -86,7 +86,7 @@ func (p *Provisioner) Prepare(raws ...interface{}) error {
}
if p.config.StagingDir == "" {
p.config.StagingDir = filepath.Join(DefaultStagingDir, uuid.TimeOrderedUUID())
p.config.StagingDir = filepath.ToSlash(filepath.Join(DefaultStagingDir, uuid.TimeOrderedUUID()))
}
// Validation

Loading…
Cancel
Save