fix: add full path to venv bin

Fixes #239.
This commit is contained in:
Örjan Fors 2025-01-16 10:01:01 +01:00
parent 118b7214ec
commit fbbb11a370

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"));
}
}