From fa1a5a5145320db4c88ffa7e200828a9987e26cf Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Sat, 31 Aug 2024 12:03:47 -0700 Subject: [PATCH] feat: pass verbose flag to run_cmd function --- aider/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/commands.py b/aider/commands.py index 2a81fa6f6..b913d4650 100644 --- a/aider/commands.py +++ b/aider/commands.py @@ -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: