don't use absolute path for poetry; search the PATH
This commit is contained in:
parent
0f72e80f8e
commit
164b69cd60
|
@ -50,7 +50,7 @@ class BuildTool:
|
||||||
return result.returncode
|
return result.returncode
|
||||||
|
|
||||||
def run_with_poetry(self, *command_line):
|
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):
|
def run(self, *command_line):
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in New Issue
Block a user