mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-04 03:35:00 +00:00
fixed #603
This commit is contained in:
parent
9d20b5f43a
commit
2ed5e45677
1 changed files with 8 additions and 2 deletions
|
@ -441,8 +441,14 @@ class Commands:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
if self.io.confirm_ask(f"No files matched '{word}'. Do you want to create {fname}?"):
|
if self.io.confirm_ask(f"No files matched '{word}'. Do you want to create {fname}?"):
|
||||||
fname.touch()
|
if "*" in str(fname) or "?" in str(fname):
|
||||||
all_matched_files.add(str(fname))
|
self.io.tool_error(f"Cannot create file with wildcard characters: {fname}")
|
||||||
|
else:
|
||||||
|
try:
|
||||||
|
fname.touch()
|
||||||
|
all_matched_files.add(str(fname))
|
||||||
|
except OSError as e:
|
||||||
|
self.io.tool_error(f"Error creating file {fname}: {e}")
|
||||||
|
|
||||||
for matched_file in all_matched_files:
|
for matched_file in all_matched_files:
|
||||||
abs_file_path = self.coder.abs_root_path(matched_file)
|
abs_file_path = self.coder.abs_root_path(matched_file)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue