Commit e9727df1 authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

Merge pull request #1146 from higebu/fix-esxi-driver-iso-upload-path

Fixes #1062, ESXi Driver supports PACKER_CACHE_DIR
parents 707853ea 6dc858e6
...@@ -260,10 +260,8 @@ func (d *ESX5Driver) String() string { ...@@ -260,10 +260,8 @@ func (d *ESX5Driver) String() string {
} }
func (d *ESX5Driver) datastorePath(path string) string { func (d *ESX5Driver) datastorePath(path string) string {
if filepath.IsAbs(path) { baseDir := filepath.Base(filepath.Dir(path))
return filepath.Join("/vmfs/volumes", d.Datastore, strings.Replace(path, "/", "", 1)) return filepath.Join("/vmfs/volumes", d.Datastore, baseDir, filepath.Base(path))
}
return filepath.Join("/vmfs/volumes", d.Datastore, path)
} }
func (d *ESX5Driver) connect() error { func (d *ESX5Driver) connect() error {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment