mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-31 17:55:01 +00:00
feat: add message for non-all-since runs
The commit adds a message to the output when the `--all-since` option is not used, which prints the percentage of code written by Aider in the current release.
This commit is contained in:
parent
3a70ea9faf
commit
0255030988
1 changed files with 3 additions and 0 deletions
|
@ -163,6 +163,9 @@ def main():
|
|||
f.write(yaml_output)
|
||||
else:
|
||||
print(yaml_output)
|
||||
|
||||
if not args.all_since:
|
||||
print(f"- Aider wrote {round(aider_percentage)}% of the code in this release.")
|
||||
|
||||
|
||||
def get_counts_for_file(start_tag, end_tag, authors, fname):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue