diff --git a/CHANGELOG.md b/CHANGELOG.md index 39ca1bb..5ecc019 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,6 +30,7 @@ For major (breaking) changes - version 3 and 2 see end of page. | Version | Date | Comment | | -------------- | -------------- | -------- | +| 4.33.8 | 2020-01-04 | `virtualBox()` fix issue windows host | | 4.33.7 | 2020-01-04 | `graphics()` nvidia-smi detection improved | | 4.33.6 | 2021-01-02 | `dockerContainerStats()` fix `tx` changed to `wx` as documented | | 4.33.5 | 2020-12-30 | `graphics()` vram (nvidia-smi) | diff --git a/docs/history.html b/docs/history.html index a590830..3f307ae 100644 --- a/docs/history.html +++ b/docs/history.html @@ -83,6 +83,11 @@ + + 4.33.8 + 2020-01-04 + virtualBox() fix issue windows host + 4.33.7 2020-01-04 diff --git a/docs/index.html b/docs/index.html index 56ebbd9..e3b039c 100644 --- a/docs/index.html +++ b/docs/index.html @@ -169,7 +169,7 @@
systeminformation
-
Current Version: 4.33.7
+
Current Version: 4.33.8
diff --git a/lib/util.js b/lib/util.js index 5a2e772..736da8e 100644 --- a/lib/util.js +++ b/lib/util.js @@ -330,7 +330,7 @@ function wmic(command, options) { } function getVboxmanage() { - return _windows ? process.env.VBOX_INSTALL_PATH || process.env.VBOX_MSI_INSTALL_PATH + '\\VBoxManage.exe' + '" ' : 'vboxmanage'; + return _windows ? `${process.env.VBOX_INSTALL_PATH || process.env.VBOX_MSI_INSTALL_PATH}\\VBoxManage.exe` : 'vboxmanage'; } function powerShell(cmd) {