This is an automated email from the ASF dual-hosted git repository. royteeuwen pushed a commit to branch bugfix/finalize-command-description in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-committer-cli.git
commit c31b94608ad23b719e8c45b152a1a46d4f5a4f60 Author: Roy Teeuwen <[email protected]> AuthorDate: Wed Jul 29 20:50:09 2026 +0200 SLING-13253 - finalize: correct the command help description order The one-line @Command description listed 'promote to Maven Central' before the dist.apache.org update, but finalize uploads to dist first (the only repository-dependent step) and then promotes. Reorder the description to match the actual execution order and the class Javadoc. --- src/main/java/org/apache/sling/cli/impl/release/FinalizeCommand.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/sling/cli/impl/release/FinalizeCommand.java b/src/main/java/org/apache/sling/cli/impl/release/FinalizeCommand.java index 1b7af2a..44d4aaf 100644 --- a/src/main/java/org/apache/sling/cli/impl/release/FinalizeCommand.java +++ b/src/main/java/org/apache/sling/cli/impl/release/FinalizeCommand.java @@ -73,9 +73,8 @@ import picocli.CommandLine; }) @CommandLine.Command( name = FinalizeCommand.NAME, - description = - "Runs all post-vote finalization steps: promote to Maven Central, update JIRA, and report to Apache." - + " When the current user is a PMC member, dist.apache.org is updated as well.", + description = "Runs all post-vote finalization steps, in order: update dist.apache.org (PMC members only)," + + " promote to Maven Central, update JIRA, and report to Apache.", subcommands = CommandLine.HelpCommand.class) public class FinalizeCommand implements Command {
