Merge pull request #3758 from elconas/fix_vmware_builder

Fix License check to work with licensed VMware Workstation
This commit is contained in:
Matthew Hooker 2016-10-07 17:51:32 -07:00 committed by GitHub
commit badadec140
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ import (
)
func workstationCheckLicense() error {
matches, err := filepath.Glob("/etc/vmware/license-*")
matches, err := filepath.Glob("/etc/vmware/license-ws-*")
if err != nil {
return fmt.Errorf("Error looking for VMware license: %s", err)
}