From ae017779cb91e30dd28e3833674b3dc67c7f0526 Mon Sep 17 00:00:00 2001 From: Vladimir Safonkin Date: Thu, 13 Oct 2022 17:41:31 +0200 Subject: [PATCH] Debug --- dist/setup/index.js | 2 +- src/install-pypy.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/setup/index.js b/dist/setup/index.js index 23fba301..394b7a6a 100644 --- a/dist/setup/index.js +++ b/dist/setup/index.js @@ -66569,7 +66569,7 @@ function isArchPresentForWindows(item, architecture) { if (architecture === 'x32') { architecture = 'x86'; } - core.info(`DEBUG: pypy: ${item.pypy_version}, python: ${item.python_version}`); + core.info(`DEBUG: pypy: ${item.pypy_version}, python: ${item.python_version}, architecture: ${architecture}`); const result = item.files.some((file) => { core.info(`arch: ${file.arch}`); file.arch === architecture && utils_1.WINDOWS_PLATFORMS.includes(file.platform); diff --git a/src/install-pypy.ts b/src/install-pypy.ts index c259ca74..e1f04834 100644 --- a/src/install-pypy.ts +++ b/src/install-pypy.ts @@ -210,7 +210,7 @@ export function isArchPresentForWindows(item: any, architecture: string) { if (architecture === 'x32') { architecture = 'x86'; } - core.info(`DEBUG: pypy: ${item.pypy_version}, python: ${item.python_version}`) + core.info(`DEBUG: pypy: ${item.pypy_version}, python: ${item.python_version}, architecture: ${architecture}`) const result = item.files.some( (file: any) => { core.info(`arch: ${file.arch}`);