Skip to content

Commit

Permalink
Fix release helper subcommands (#6451)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jackenmen committed Sep 15, 2024
1 parent 005b8af commit d3887b5
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions tools/release_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -324,8 +324,11 @@ def set_release_stage(stage: ReleaseStage) -> None:
@click.group(invoke_without_command=True)
@click.option("--continue", "abort", flag_value=False, default=None)
@click.option("--abort", "abort", flag_value=True, default=None)
def cli(*, abort: Optional[bool] = None):
@click.pass_context
def cli(ctx: click.Context, *, abort: Optional[bool] = None):
"""Red's release helper, guiding you through the whole process!"""
if ctx.invoked_subcommand is not None:
return
stage = get_release_stage()
if abort is True:
if stage is not ReleaseStage.WELCOME:
Expand Down Expand Up @@ -397,7 +400,7 @@ def cli(*, abort: Optional[bool] = None):
rich.print(Markdown("# Step 8+: Follow the release process documentation"))
rich.print(
"You can continue following the release process documentation from step 8:\n"
"https://red-devguide.readthedocs.io/core-devs/release-process/"
"https://red-devguide.readthedocs.io/core-devs/release-process/#write-announcement"
)
wipe_git_config_values()

Expand Down

0 comments on commit d3887b5

Please sign in to comment.