mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-31 17:55:01 +00:00
refactor: disable pexpect usage in run_cmd function
This commit is contained in:
parent
8024153b3c
commit
64b05a9971
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ import pexpect
|
|||
def run_cmd(command):
|
||||
import sys
|
||||
|
||||
if sys.stdin.isatty() and hasattr(pexpect, "spawn") and platform.system() != "Windows":
|
||||
if False and sys.stdin.isatty() and hasattr(pexpect, "spawn") and platform.system() != "Windows":
|
||||
return run_cmd_pexpect(command)
|
||||
|
||||
return run_cmd_subprocess(command)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue