FIX #2020 Better error when vboxmanage is missing

Signed-off-by: David Gageot <david@gageot.net>
This commit is contained in:
David Gageot 2015-10-21 09:35:33 +02:00
parent c442690618
commit 38b7fe5013
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ var (
reMachineNotFound = regexp.MustCompile(`Could not find a registered machine named '(.+)'`)
ErrMachineNotExist = errors.New("machine does not exist")
ErrVBMNotFound = errors.New("VBoxManage not found")
ErrVBMNotFound = errors.New("VBoxManage not found. Make sure VirtualBox is installed and VBoxManage is in the path")
vboxManageCmd = detectVBoxManageCmd()
)