don't use absolute path for poetry; search the PATH

This commit is contained in:
evilchili 2024-03-25 23:13:33 -07:00
parent 0f72e80f8e
commit 164b69cd60

View File

@ -50,7 +50,7 @@ class BuildTool:
return result.returncode
def run_with_poetry(self, *command_line):
return self._exec(str(self.poetry.absolute()), *command_line)
return self._exec(str(self.poetry), *command_line)
def run(self, *command_line):
"""