From 427d7b06bf1c58e9271b627f391b787ab5f8cc54 Mon Sep 17 00:00:00 2001 From: artemdevel Date: Fri, 11 Mar 2016 21:47:02 +0200 Subject: [PATCH] Added warning message for Parallels, fixed several typos --- utils/cli.go | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/utils/cli.go b/utils/cli.go index 21c72d6..98c63ed 100644 --- a/utils/cli.go +++ b/utils/cli.go @@ -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.")