Skip to content

Commit

Permalink
Add beta alias for early access
Browse files Browse the repository at this point in the history
  • Loading branch information
ayushuk committed Oct 5, 2023
1 parent e121fb6 commit 53341b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pros/cli/conductor.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ def uninstall_template(project: c.Project, query: c.BaseTemplate, remove_user: b
help='Compile the project after creation')
@click.option('--build-cache', is_flag=True, default=None, show_default=False,
help='Build compile commands cache after creation. Overrides --compile-after if both are specified.')
@click.option('--early-access', '--early', '-ea', 'early_access', is_flag=True, default=False, show_default=True,
@click.option('--early-access', '--early', '-ea', 'early_access', '--beta', is_flag=True, default=False, show_default=True,
help='Create a project with a PROS v4 template')
@click.pass_context
@default_options
Expand Down Expand Up @@ -249,7 +249,7 @@ def new_project(ctx: click.Context, path: str, target: str, version: str,
help='Force update all remote depots, ignoring automatic update checks')
@click.option('--limit', type=int, default=15,
help='The maximum number of displayed results for each library')
@click.option('--early-access', '--early', '-ea', 'early_access', is_flag=True, default=False, show_default=True,
@click.option('--early-access', '--early', '-ea', '--beta', 'early_access', is_flag=True, default=False, show_default=True,
help='View PROS v4 templates in the listing')
@template_query(required=False)
@click.pass_context
Expand Down

0 comments on commit 53341b3

Please sign in to comment.