We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ebe19f9 + b94fcfb commit 544d68cCopy full SHA for 544d68c
1 file changed
agent/base.py
@@ -93,7 +93,7 @@ def execute(
93
def run_subprocess(self, command, directory, input, executable, non_zero_throw=True):
94
# Start a child process and start reading output immediately
95
with subprocess.Popen(
96
- shlex.join(shlex.quote(x) for x in shlex.split(command)),
+ command,
97
stdout=subprocess.PIPE,
98
stderr=subprocess.STDOUT,
99
stdin=subprocess.PIPE if input else None,
0 commit comments