mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-28 16:25:00 +00:00
changed output if dryrun
This commit is contained in:
parent
ab68022fb9
commit
ed138d1940
1 changed files with 4 additions and 1 deletions
|
@ -430,7 +430,10 @@ class Coder:
|
|||
|
||||
edited.add(path)
|
||||
if utils.do_replace(full_path, original, updated, self.dry_run):
|
||||
self.io.tool(f"Applied edit to {path}")
|
||||
if self.dry_run:
|
||||
self.io.tool(f"Dry run, did not apply edit to {path}")
|
||||
else:
|
||||
self.io.tool(f"Applied edit to {path}")
|
||||
else:
|
||||
self.io.tool_error(f"Failed to apply edit to {path}")
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue