You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
func (v *VmwareInfo) IsProfessional() bool {
// First, lets check if the license has been explicitly
// set to standard or professional
if v.License == "professional" {
return true
}
if v.License == "standard" {
return false
}
return strings.Contains(v.License, "pro")
}
The text was updated successfully, but these errors were encountered:
I'm trying to reproduce the behavior you are encountering but have so far been unsuccessful. The license string you have provided should be properly matched as a professional license. Would you please provide the debug output from the utility startup. If you are running it directly, you can use the -debug flag. Otherwise you can update the configuration file and set the level to debug.
VMWare workstation version
The vmware-vmx doesn't return same result as expected in code and the vagrant utility doesn't recognize professional license.
return ws.fusion.pro.vl
Vagrant VMware utility version
Last version build from git clone
Host operating system
Ubuntu 20.04.
Debug output
Solution to fix it
The text was updated successfully, but these errors were encountered: