diff --git a/dist/index.js b/dist/index.js index d272f1d..a49ff11 100644 --- a/dist/index.js +++ b/dist/index.js @@ -12037,7 +12037,9 @@ async function hostBuild(maturinRelease, args) { core.info(`Installing 'maturin' from tag '${maturinRelease}'`); const maturinPath = await installMaturin(maturinRelease); await exec.exec(maturinPath, ['--version'], { ignoreReturnCode: true }); - await exec.exec('python3', ['-m', 'pip', 'install', 'cffi']); + await exec.exec('python3', ['-m', 'pip', 'install', 'cffi'], { + ignoreReturnCode: true + }); if (IS_LINUX) { await exec.exec('python3', ['-m', 'pip', 'install', 'patchelf']); } diff --git a/src/index.ts b/src/index.ts index eb69db0..a17816b 100644 --- a/src/index.ts +++ b/src/index.ts @@ -878,7 +878,9 @@ async function hostBuild( core.info(`Installing 'maturin' from tag '${maturinRelease}'`) const maturinPath = await installMaturin(maturinRelease) await exec.exec(maturinPath, ['--version'], {ignoreReturnCode: true}) - await exec.exec('python3', ['-m', 'pip', 'install', 'cffi']) + await exec.exec('python3', ['-m', 'pip', 'install', 'cffi'], { + ignoreReturnCode: true + }) if (IS_LINUX) { await exec.exec('python3', ['-m', 'pip', 'install', 'patchelf']) }