Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion command/crypto/key/format.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import (
"github.com/pkg/errors"
"github.com/urfave/cli"

"github.com/smallstep/cli-utils/command"
"github.com/smallstep/cli-utils/errs"
"github.com/smallstep/cli-utils/fileutil"
"github.com/smallstep/cli-utils/ui"
Expand All @@ -27,7 +28,7 @@ import (
func formatCommand() cli.Command {
return cli.Command{
Name: "format",
Action: cli.ActionFunc(formatAction),
Action: command.ActionFunc(formatAction),
Usage: `reformat a public or private key`,
UsageText: `**step crypto key format** <key-file> [**--out**=<file>]`,
Description: `**step crypto key format** prints or writes the key in
Expand Down