Remove duplicate code introduced in #440

#440 duplicated a block of code outside of `if (updateEnvironment) {` condition. This was probably an oversight when merging `main` back on the PR branch. The tests should have seen that `core.exportVariable` was being called and should have failed.
This commit is contained in:
mayeut
2022-07-02 11:50:26 +02:00
parent 412091c1e0
commit 2c9de4ed41
2 changed files with 0 additions and 20 deletions

View File

@ -70,17 +70,6 @@ export async function useCpythonVersion(
);
}
if (IS_LINUX) {
const libPath = process.env.LD_LIBRARY_PATH
? `:${process.env.LD_LIBRARY_PATH}`
: '';
const pyLibPath = path.join(installDir, 'lib');
if (!libPath.split(':').includes(pyLibPath)) {
core.exportVariable('LD_LIBRARY_PATH', pyLibPath + libPath);
}
}
const _binDir = binDir(installDir);
const binaryExtension = IS_WINDOWS ? '.exe' : '';
const pythonPath = path.join(