Add venv/bin as absolute path to PATH

This commit is contained in:
Kevin Stillhammer 2025-01-16 10:13:12 +01:00
parent 2487ffc9aa
commit f35085f475
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

2
dist/setup/index.js generated vendored
View file

@ -101686,7 +101686,7 @@ function setupPython() {
if (process.platform === "win32") {
venvBinPath = ".venv/Scripts";
}
core.addPath(venvBinPath);
core.addPath(path.resolve(venvBinPath));
core.exportVariable("VIRTUAL_ENV", path.resolve(".venv"));
}
});

View file

@ -161,7 +161,7 @@ async function setupPython(): Promise<void> {
if (process.platform === "win32") {
venvBinPath = ".venv/Scripts";
}
core.addPath(venvBinPath);
core.addPath(path.resolve(venvBinPath));
core.exportVariable("VIRTUAL_ENV", path.resolve(".venv"));
}
}