Skip to content

Commit

Permalink
Merge pull request quarkusio#42883 from michalvavrik/feature/fix-tls-…
Browse files Browse the repository at this point in the history
…cmd-help-option

Fix Quarkus CLI TLS command help option
  • Loading branch information
cescoffier authored Aug 30, 2024
2 parents 2f7dac0 + d29235d commit 662cf29
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public class GenerateCertificateCommand implements Callable<Integer> {
Security.addProvider(new org.bouncycastle.jce.provider.BouncyCastleProvider());
}

static System.Logger LOGGER = System.getLogger("generate-quarkus-ca");
static System.Logger LOGGER = System.getLogger("generate-certificate");

@Override
public Integer call() throws Exception {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import io.quarkus.tls.cli.letsencrypt.LetsEncryptRenewCommand;
import picocli.CommandLine;

@CommandLine.Command(name = "lets-encrypt", sortOptions = false, header = "Prepare, generate and renew Let's Encrypt Certificates", subcommands = {
@CommandLine.Command(name = "lets-encrypt", mixinStandardHelpOptions = true, sortOptions = false, header = "Prepare, generate and renew Let's Encrypt Certificates", subcommands = {
LetsEncryptPrepareCommand.class,
LetsEncryptIssueCommand.class,
LetsEncryptRenewCommand.class,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import picocli.CommandLine;

@CommandLine.Command(name = "tls", sortOptions = false, header = "Install and Manage TLS development certificates", subcommands = {
@CommandLine.Command(name = "tls", mixinStandardHelpOptions = true, sortOptions = false, header = "Install and Manage TLS development certificates", subcommands = {
GenerateCACommand.class,
GenerateCertificateCommand.class,
LetsEncryptCommand.class
Expand Down

0 comments on commit 662cf29

Please sign in to comment.