Merge pull request #1146 from higebu/fix-esxi-driver-iso-upload-path
Fixes #1062, ESXi Driver supports PACKER_CACHE_DIR
This commit is contained in:
commit
e9727df15e
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue