From fbbb11a370cb1516b74d78db1a1ae4407073c083 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=96rjan=20Fors?= Date: Thu, 16 Jan 2025 10:01:01 +0100 Subject: [PATCH] fix: add full path to venv bin Fixes #239. --- src/setup-uv.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/setup-uv.ts b/src/setup-uv.ts index 9195c66..a7ff66e 100644 --- a/src/setup-uv.ts +++ b/src/setup-uv.ts @@ -161,7 +161,7 @@ async function setupPython(): Promise { if (process.platform === "win32") { venvBinPath = ".venv/Scripts"; } - core.addPath(venvBinPath); + core.addPath(path.resolve(venvBinPath)); core.exportVariable("VIRTUAL_ENV", path.resolve(".venv")); } }