Fixes #1062, ESXi Driver supports PACKER_CACHE_DIR

This commit is contained in:
Yuya Kusakabe 2014-05-09 13:16:18 +09:00
parent c1cfd1da46
commit 6dc858e6cf
1 changed files with 2 additions and 4 deletions

View File

@ -260,10 +260,8 @@ func (d *ESX5Driver) String() string {
}
func (d *ESX5Driver) datastorePath(path string) string {
if filepath.IsAbs(path) {
return filepath.Join("/vmfs/volumes", d.Datastore, strings.Replace(path, "/", "", 1))
}
return filepath.Join("/vmfs/volumes", d.Datastore, path)
baseDir := filepath.Base(filepath.Dir(path))
return filepath.Join("/vmfs/volumes", d.Datastore, baseDir, filepath.Base(path))
}
func (d *ESX5Driver) connect() error {