Skip to content

Commit 7cc0dc6

Browse files
Remove quotes.
1 parent b1f28c8 commit 7cc0dc6

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
@@ -493,7 +493,7 @@ class Virtualbox {
493493
// Path may not contain VBoxManage.exe but it provides this environment variable
494494
const vBoxInstallPath =
495495
process.env.VBOX_INSTALL_PATH || process.env.VBOX_MSI_INSTALL_PATH;
496-
this._vBoxManageBinary = `"${vBoxInstallPath}VBoxManage.exe"`;
496+
this._vBoxManageBinary = `${vBoxInstallPath}VBoxManage.exe`;
497497
} else if (/^darwin/.test(host_platform) || /^linux/.test(host_platform)) {
498498
// Mac OS X and most Linux use the same binary name, in the path
499499
this._vBoxManageBinary = 'vboxmanage';

0 commit comments

Comments
 (0)