feat: pass verbose flag to run_cmd function

This commit is contained in:
Paul Gauthier (aider) 2024-08-31 12:03:47 -07:00
parent 95f66431bc
commit fa1a5a5145

View file

@ -754,7 +754,7 @@ class Commands:
def cmd_run(self, args, add_on_nonzero_exit=False):
"Run a shell command and optionally add the output to the chat (alias: !)"
exit_status, combined_output = run_cmd(args)
exit_status, combined_output = run_cmd(args, verbose=self.verbose)
instructions = None
if combined_output is None: