Skip to content

Commit

Permalink
replace comments for a nice docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
wagnerluis1982 committed Oct 27, 2022
1 parent 00fc23b commit 36a4d63
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions src/poetry/console/commands/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,16 @@ def _module(self) -> Module:
return module

def run_script(self, script: str | dict[str, str], args: list[str]) -> int:
# Calling `sys.argv` should run the same program as the currently
# running program. To make calling Poetry scripts through RunCommand
# match this behavior, we must set `sys.argv[0]` to be the full path of
# the executable.
"""Runs an entry point script defined in the section ``[tool.poetry.scripts]``.
When a script exists in the venv bin folder, i.e. after ``poetry install``,
then ``sys.argv[0]`` must be set to the full path of the executable, so
``poetry run foo`` and ``poetry shell``, ``foo`` have the same ``sys.argv[0]``
that points to the full path.
Otherwise (when an entry point script does not exist), ``sys.argv[0]`` is the
script name only, i.e. ``poetry run foo`` has ``sys.argv == ['foo']``.
"""
args = [self.env._bin(args[0]), *args[1:]]

if isinstance(script, dict):
Expand Down

0 comments on commit 36a4d63

Please sign in to comment.