1
0
Fork 0

Add debug info for check os version id during manifest findMatch

pull/1112/head
Sergey Dolin 2022-06-09 12:02:09 +02:00
parent b5f31bb5a2
commit 7c3fe0db7d
1 changed files with 5 additions and 0 deletions

View File

@ -92,6 +92,11 @@ export async function _findMatch(
chk = true
} else {
chk = semver.satisfies(osVersion, item.platform_version)
if (!chk) {
debug(
`os version: "${osVersion}" does not match version python is built for: "${item.platform_version}"`
)
}
}
}