From 52d5a7636d8ba444479c59f664ef81fbf9d433fe Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Tue, 27 Aug 2024 08:59:08 -0700 Subject: [PATCH] fix: Use /bin/sh -c if it exists in run_interactive_command --- aider/utils.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/aider/utils.py b/aider/utils.py index 5d73a39e1..958a66dbf 100644 --- a/aider/utils.py +++ b/aider/utils.py @@ -363,10 +363,6 @@ def check_pip_install_extra(io, module, prompt, pip_install_cmd): if __name__ == "__main__": - import sys - - from aider.dump import dump - if len(sys.argv) > 1: command = " ".join(sys.argv[1:]) exit_status, output = run_interactive_command(command)