We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1d49198 + 702f35b commit 87cd7deCopy full SHA for 87cd7de
command/crypto/key/format.go
@@ -13,6 +13,7 @@ import (
13
"github.com/pkg/errors"
14
"github.com/urfave/cli"
15
16
+ "github.com/smallstep/cli-utils/command"
17
"github.com/smallstep/cli-utils/errs"
18
"github.com/smallstep/cli-utils/fileutil"
19
"github.com/smallstep/cli-utils/ui"
@@ -27,7 +28,7 @@ import (
27
28
func formatCommand() cli.Command {
29
return cli.Command{
30
Name: "format",
- Action: cli.ActionFunc(formatAction),
31
+ Action: command.ActionFunc(formatAction),
32
Usage: `reformat a public or private key`,
33
UsageText: `**step crypto key format** <key-file> [**--out**=<file>]`,
34
Description: `**step crypto key format** prints or writes the key in
0 commit comments