Skip to content

Commit 6dbcc89

Browse files
Merge pull request #30 from jamescoward/vbox5
Fixed incorrect run command when using VirtualBox5
2 parents 4a4adf1 + e853e33 commit 6dbcc89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/virtualbox.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ function vmExec(options, callback) {
212212
var runcmd = ' execute --image ';
213213

214214
if (vbox_version == 5) {
215-
runcmd = ' run --exe ';
215+
runcmd = ' run ';
216216
}
217217

218218
switch (os_type) {

0 commit comments

Comments
 (0)