diff --git a/dist/index.js b/dist/index.js index a49ff11..d272f1d 100644 --- a/dist/index.js +++ b/dist/index.js @@ -12037,9 +12037,7 @@ 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'], { - ignoreReturnCode: true - }); + await exec.exec('python3', ['-m', 'pip', 'install', 'cffi']); if (IS_LINUX) { await exec.exec('python3', ['-m', 'pip', 'install', 'patchelf']); } diff --git a/src/index.ts b/src/index.ts index a17816b..eb69db0 100644 --- a/src/index.ts +++ b/src/index.ts @@ -878,9 +878,7 @@ 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'], { - ignoreReturnCode: true - }) + await exec.exec('python3', ['-m', 'pip', 'install', 'cffi']) if (IS_LINUX) { await exec.exec('python3', ['-m', 'pip', 'install', 'patchelf']) }