Skip to content

Commit

Permalink
Fix base64-key parameter (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
Link- committed Nov 10, 2023
1 parent 52f27bb commit 96ddb44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ func Generate(c *cli.Context) error {
appID := c.String("app-id")
installationID := c.String("installation-id")
keyPath := c.String("key")
keyBase64 := c.String("key-base64")
keyBase64 := c.String("base64-key")
printJWT := c.Bool("jwt")
jwtExpiry := c.Int("jwt-expiry")
hostname := strings.ToLower(c.String("hostname"))
Expand Down

0 comments on commit 96ddb44

Please sign in to comment.