Skip to content

Commit

Permalink
Set VIRTUAL_ENV to .venv instead of .venv/bin (#210)
Browse files Browse the repository at this point in the history
Closes: #209
  • Loading branch information
eifinger authored Dec 23, 2024
1 parent d174a24 commit 887a942
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/setup/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/setup-uv.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ async function setupPython(): Promise<void> {
venvBinPath = ".venv/Scripts";
}
core.addPath(venvBinPath);
core.exportVariable("VIRTUAL_ENV", venvBinPath);
core.exportVariable("VIRTUAL_ENV", ".venv");
}
}

Expand Down

0 comments on commit 887a942

Please sign in to comment.