Skip to content

Commit

Permalink
fix: poetry env broken on Windows (python-poetry#4615)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Bowles committed Oct 31, 2021
1 parent 5dcf24d commit ee7b506
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion poetry/utils/env.py
Expand Up @@ -1421,7 +1421,7 @@ def _bin(self, bin: str) -> str:
# a base Python install.
if self._is_windows:
if not bin.endswith(".exe"):
bin_path = self._bin_dir / (bin + ".exe")
bin_path = self._path / (bin + ".exe")
else:
bin_path = self._path / bin

Expand Down

0 comments on commit ee7b506

Please sign in to comment.