mirror of https://github.com/docker/docs.git
FIX #2020 Better error when vboxmanage is missing
Signed-off-by: David Gageot <david@gageot.net>
This commit is contained in:
parent
c442690618
commit
38b7fe5013
|
@ -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()
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue