Skip to content

Commit

Permalink
fix: delete leftover poetry script on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
StarHeartHunt authored and neersighted committed Jul 25, 2022
1 parent 915d307 commit 3033923
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install-poetry.py
Original file line number Diff line number Diff line change
Expand Up @@ -571,7 +571,7 @@ def uninstall(self) -> int:
self._write("Removing {}".format(colorize("info", "Poetry")))

shutil.rmtree(str(self._data_dir))
for script in ["poetry", "poetry.bat"]:
for script in ["poetry", "poetry.bat", "poetry.exe"]:
if self._bin_dir.joinpath(script).exists():
self._bin_dir.joinpath(script).unlink()

Expand Down

0 comments on commit 3033923

Please sign in to comment.