mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-25 06:44:59 +00:00
test case and fix for /add blowing up in subdir #201
This commit is contained in:
parent
545f10551e
commit
98bacd0b5b
2 changed files with 26 additions and 6 deletions
|
@ -279,16 +279,17 @@ class Commands:
|
|||
if any(char in word for char in "*?[]"):
|
||||
self.io.tool_error(f"No files to add matching pattern: {word}")
|
||||
else:
|
||||
if Path(word).exists():
|
||||
if Path(word).is_file():
|
||||
matched_files = [word]
|
||||
fname = Path(self.coder.root) / word
|
||||
if fname.exists():
|
||||
if fname.is_file():
|
||||
matched_files = [str(fname)]
|
||||
else:
|
||||
self.io.tool_error(f"Unable to add: {word}")
|
||||
elif self.io.confirm_ask(
|
||||
f"No files matched '{word}'. Do you want to create the file?"
|
||||
f"No files matched '{word}'. Do you want to create {fname}?"
|
||||
):
|
||||
(Path(self.coder.root) / word).touch()
|
||||
matched_files = [word]
|
||||
fname.touch()
|
||||
matched_files = [str(fname)]
|
||||
|
||||
all_matched_files.update(matched_files)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue