1
0
Fork 0

chore: add debug logging of os version check in find manifest

pull/1070/head
Maikel van den Hurk 2022-05-03 11:59:15 +02:00
parent 3e2837ddce
commit cbee98ec75
No known key found for this signature in database
GPG Key ID: D8CA6307F4D941C7
1 changed files with 3 additions and 0 deletions

View File

@ -88,6 +88,9 @@ export async function _findMatch(
if (chk && item.platform_version) { if (chk && item.platform_version) {
const osVersion = module.exports._getOsVersion() const osVersion = module.exports._getOsVersion()
debug(
`${osVersion}===${item.platform_version}`
)
if (osVersion === item.platform_version) { if (osVersion === item.platform_version) {
chk = true chk = true
} else { } else {