Skip to content

Commit

Permalink
FIX: check VU_HOST_DETAILS[vu][engine] exists
Browse files Browse the repository at this point in the history
  • Loading branch information
rwaldron committed Feb 17, 2021
1 parent e26e0d2 commit c9b1e27
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/host-manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,8 @@ exports.configureFromVersionUpdater = (config, vu, vuRoot, hostPrefix = '') => {
}

for (let engine of engines) {
if (!VU_HOST_DETAILS[vu]) {
if (!VU_HOST_DETAILS[vu] ||
(VU_HOST_DETAILS[vu] && !VU_HOST_DETAILS[vu][engine])) {
continue;
}

Expand Down

0 comments on commit c9b1e27

Please sign in to comment.