fix: make sure VIRTUAL_ENV is an absolute path (#224)

Closes https://github.com/astral-sh/setup-uv/issues/219
This commit is contained in:
samypr100 2025-01-06 18:34:15 -04:00 committed by GitHub
parent 7b290f7b85
commit 7768fe6bf0
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

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

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

View file

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