mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-02 02:34:59 +00:00
refactor: improve error handling in run_cmd function
This commit is contained in:
parent
d8639bac48
commit
c4e4967691
3 changed files with 5 additions and 3 deletions
|
@ -1946,7 +1946,7 @@ class Coder:
|
|||
self.io.tool_output(f"Running {command}")
|
||||
# Add the command to input history
|
||||
self.io.add_to_input_history(f"/run {command.strip()}")
|
||||
exit_status, output = run_cmd(command)
|
||||
exit_status, output = run_cmd(command, error_print=self.io.tool_error)
|
||||
if output:
|
||||
accumulated_output += f"Output from {command}\n{output}\n"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue