You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think it would be fairly simple to update the functionality to use create_subprocess_shell if a string is passed, and create_subprocess_exec if a iterable is passed.
The text was updated successfully, but these errors were encountered:
This was not really by accident, it was more of by design. Still, I would not refuse a change that makes it behave more like subprocess.run, where you can also specify shell as true or not.
ssbarnea
changed the title
(🐞) Execution is always as a shell
Execution is always as a shell
May 6, 2023
When there is no space in the command
Will not use the shell, but with:
will be run as a shell.
I think it would be fairly simple to update the functionality to use
create_subprocess_shell
if a string is passed, andcreate_subprocess_exec
if a iterable is passed.The text was updated successfully, but these errors were encountered: