feat: Add --install-main-branch switch

This commit is contained in:
Paul Gauthier (aider) 2024-08-27 05:36:13 -07:00
parent de19c0aff0
commit 475a1ed6d6
3 changed files with 13 additions and 2 deletions

View file

@ -503,6 +503,12 @@ def get_parser(default_config_files, git_root):
help="Check for new aider versions on launch",
default=True,
)
group.add_argument(
"--install-main-branch",
action="store_true",
help="Install the latest version from the main branch",
default=False,
)
group.add_argument(
"--apply",
metavar="FILE",