From 4c154b2f273cad738d39ba49dae055479510da8f Mon Sep 17 00:00:00 2001 From: "Greg T. Wallace" Date: Fri, 2 Feb 2024 18:35:21 -0500 Subject: [PATCH] fix flag description --- pkg/app/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/app/config.go b/pkg/app/config.go index 42fc58b..31f0f92 100644 --- a/pkg/app/config.go +++ b/pkg/app/config.go @@ -48,7 +48,7 @@ func (app *app) getConfig() { createFlags := ff.NewFlagSet("create").SetParent(rootFlags) cfg.create.keyPemFilePath = createFlags.StringLong("keyfile", "", "path and filename of the rsa-2048 key in pem format") - cfg.create.certPemFilePath = createFlags.StringLong("certfile", "", "path and filename of the rsa-2048 key in pem format") + cfg.create.certPemFilePath = createFlags.StringLong("certfile", "", "path and filename of the certificate in pem format") cfg.create.outFilePath = createFlags.StringLong("outfile", createDefaultOutFilePath, "path and filename to write the p15 file to") createCmd := &ff.Command{