Skip to content

Commit 8135dea

Browse files
author
YOUNG HO CHA
committed
Update dist temporary
1 parent f06a579 commit 8135dea

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

dist/setup/index.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10380,6 +10380,7 @@ function _findMatch(versionSpec, stable, candidates, archFilter) {
1038010380
let chk = item.arch === archFilter && item.platform === platFilter;
1038110381
if (chk && item.platform_version) {
1038210382
const osVersion = module.exports._getOsVersion();
10383+
core.info(`osVersion: ${osVersion]} platform_version: ${item.platform_version}`)
1038310384
if (osVersion === item.platform_version) {
1038410385
chk = true;
1038510386
}
@@ -10425,6 +10426,10 @@ function _getOsVersion() {
1042510426
const lines = lsbContents.split('\n');
1042610427
for (const line of lines) {
1042710428
const parts = line.split('=');
10429+
if (parts.length === 2) {
10430+
core.info(`parts[0]: ${parts[0]} parts[1]: ${parts[1]}`)
10431+
}
10432+
1042810433
if (parts.length === 2 &&
1042910434
(parts[0].trim() === 'VERSION_ID' ||
1043010435
parts[0].trim() === 'DISTRIB_RELEASE')) {
@@ -71238,4 +71243,4 @@ module.exports = JSON.parse('[[[0,44],"disallowed_STD3_valid"],[[45,46],"valid"]
7123871243
/******/ module.exports = __webpack_exports__;
7123971244
/******/
7124071245
/******/ })()
71241-
;
71246+
;

0 commit comments

Comments
 (0)