Skip to content

Commit 2c9de4e

Browse files
committed
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.
1 parent 412091c commit 2c9de4e

File tree

2 files changed

+0
-20
lines changed

2 files changed

+0
-20
lines changed

dist/setup/index.js

-9
Original file line numberDiff line numberDiff line change
@@ -64845,15 +64845,6 @@ function useCpythonVersion(version, architecture, updateEnvironment) {
6484564845
`The list of all available versions can be found here: ${installer.MANIFEST_URL}`
6484664846
].join(os.EOL));
6484764847
}
64848-
if (utils_1.IS_LINUX) {
64849-
const libPath = process.env.LD_LIBRARY_PATH
64850-
? `:${process.env.LD_LIBRARY_PATH}`
64851-
: '';
64852-
const pyLibPath = path.join(installDir, 'lib');
64853-
if (!libPath.split(':').includes(pyLibPath)) {
64854-
core.exportVariable('LD_LIBRARY_PATH', pyLibPath + libPath);
64855-
}
64856-
}
6485764848
const _binDir = binDir(installDir);
6485864849
const binaryExtension = utils_1.IS_WINDOWS ? '.exe' : '';
6485964850
const pythonPath = path.join(utils_1.IS_WINDOWS ? installDir : _binDir, `python${binaryExtension}`);

src/find-python.ts

-11
Original file line numberDiff line numberDiff line change
@@ -70,17 +70,6 @@ export async function useCpythonVersion(
7070
);
7171
}
7272

73-
if (IS_LINUX) {
74-
const libPath = process.env.LD_LIBRARY_PATH
75-
? `:${process.env.LD_LIBRARY_PATH}`
76-
: '';
77-
const pyLibPath = path.join(installDir, 'lib');
78-
79-
if (!libPath.split(':').includes(pyLibPath)) {
80-
core.exportVariable('LD_LIBRARY_PATH', pyLibPath + libPath);
81-
}
82-
}
83-
8473
const _binDir = binDir(installDir);
8574
const binaryExtension = IS_WINDOWS ? '.exe' : '';
8675
const pythonPath = path.join(

0 commit comments

Comments
 (0)