Skip to content

Commit

Permalink
Remove quotes.
Browse files Browse the repository at this point in the history
  • Loading branch information
colonelpopcorn committed Aug 21, 2020
1 parent b1f28c8 commit 7cc0dc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/virtualbox.js
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ class Virtualbox {
// Path may not contain VBoxManage.exe but it provides this environment variable
const vBoxInstallPath =
process.env.VBOX_INSTALL_PATH || process.env.VBOX_MSI_INSTALL_PATH;
this._vBoxManageBinary = `"${vBoxInstallPath}VBoxManage.exe"`;
this._vBoxManageBinary = `${vBoxInstallPath}VBoxManage.exe`;
} else if (/^darwin/.test(host_platform) || /^linux/.test(host_platform)) {
// Mac OS X and most Linux use the same binary name, in the path
this._vBoxManageBinary = 'vboxmanage';
Expand Down

0 comments on commit 7cc0dc6

Please sign in to comment.