Skip to content

Commit

Permalink
Added warning message for Parallels, fixed several typos
Browse files Browse the repository at this point in the history
  • Loading branch information
artemdevel committed Mar 11, 2016
1 parent 5394b07 commit 427d7b0
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions utils/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,13 @@ func ShowHypervisorWarning(hypervisor string) {
EnterToContinue("WARNING: For HyperV you must run this tool as Administrator.")
case "VMware":
if runtime.GOOS == "darwin" {
EnterToContinue("WARNING: At least VMware Fusion must be isntalled to run this tool correctly.")
EnterToContinue("WARNING: At least VMware Fusion must be installed to run this tool correctly.")
} else {
EnterToContinue("WARNING: At least VMware Workstation must be isntalled to run this tool correctly.")
EnterToContinue("WARNING: At least VMware Workstation must be installed to run this tool correctly.")
EnterToContinue("WARNING: VMware hypervisor isn't compatible with Hyper-V hypervisor.")
}
case "Parallels":
EnterToContinue("WARNING: Parallels Desktop for Mac Pro or Business Edition must be installed to run this tool correctly.")
case "VirtualBox":
if runtime.GOOS == "windows" {
EnterToContinue("WARNING: VirtualBox could fail to run selected VM if Hyper-V is also installed.")
Expand Down

0 comments on commit 427d7b0

Please sign in to comment.