Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions aider/tools/grep.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import shlex
import shutil
from pathlib import Path

import oslex

from aider.run_cmd import run_cmd_subprocess


Expand Down Expand Up @@ -117,7 +118,7 @@ def _execute_grep(
cmd_args.extend([pattern, str(search_dir_path)])

# Convert list to command string for run_cmd_subprocess
command_string = shlex.join(cmd_args)
command_string = oslex.join(cmd_args)

coder.io.tool_output(f"⚙️ Executing {tool_name}: {command_string}")

Expand Down
Loading