We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1f28c8 commit 7cc0dc6Copy full SHA for 7cc0dc6
lib/virtualbox.js
@@ -493,7 +493,7 @@ class Virtualbox {
493
// Path may not contain VBoxManage.exe but it provides this environment variable
494
const vBoxInstallPath =
495
process.env.VBOX_INSTALL_PATH || process.env.VBOX_MSI_INSTALL_PATH;
496
- this._vBoxManageBinary = `"${vBoxInstallPath}VBoxManage.exe"`;
+ this._vBoxManageBinary = `${vBoxInstallPath}VBoxManage.exe`;
497
} else if (/^darwin/.test(host_platform) || /^linux/.test(host_platform)) {
498
// Mac OS X and most Linux use the same binary name, in the path
499
this._vBoxManageBinary = 'vboxmanage';
0 commit comments