use path.Join to make a cleaner path

This commit is contained in:
Joshua Foster 2020-06-10 09:12:21 -04:00
parent c7a6315ca4
commit f5a795a22e
1 changed files with 2 additions and 1 deletions

View File

@ -2,6 +2,7 @@ package driver
import (
"fmt"
"path"
"github.com/vmware/govmomi/object"
"github.com/vmware/govmomi/vim25/mo"
@ -21,7 +22,7 @@ func (d *Driver) NewFolder(ref *types.ManagedObjectReference) *Folder {
}
func (d *Driver) FindFolder(name string) (*Folder, error) {
f, err := d.finder.Folder(d.ctx, fmt.Sprintf("%v/vm/%v", d.datacenter.InventoryPath, name))
f, err := d.finder.Folder(d.ctx, path.Join(d.datacenter.InventoryPath, "vm", name))
if err != nil {
return nil, err
}