Skip to content

Commit 38b7fe5

Browse files
committed
FIX docker-archive-public#2020 Better error when vboxmanage is missing
Signed-off-by: David Gageot <david@gageot.net>
1 parent c442690 commit 38b7fe5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/virtualbox/vbm.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ var (
2121
reMachineNotFound = regexp.MustCompile(`Could not find a registered machine named '(.+)'`)
2222

2323
ErrMachineNotExist = errors.New("machine does not exist")
24-
ErrVBMNotFound = errors.New("VBoxManage not found")
24+
ErrVBMNotFound = errors.New("VBoxManage not found. Make sure VirtualBox is installed and VBoxManage is in the path")
2525

2626
vboxManageCmd = detectVBoxManageCmd()
2727
)

0 commit comments

Comments
 (0)