Skip to content

Commit 7f5ef5c

Browse files
fix(cli): correct typo in bcrypt error message (argoproj#23849)
Signed-off-by: gyu-young-park <gyoue200125@gmail.com>
1 parent 1c9bb47 commit 7f5ef5c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cmd/argocd/commands/bcrypt.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ argocd account bcrypt --password YOUR_PASSWORD`,
2121
// Hashing the password
2222
hash, err := bcrypt.GenerateFromPassword(bytePassword, bcrypt.DefaultCost)
2323
if err != nil {
24-
log.Fatalf("Failed to genarate bcrypt hash: %v", err)
24+
log.Fatalf("Failed to generate bcrypt hash: %v", err)
2525
}
2626
fmt.Fprint(cmd.OutOrStdout(), string(hash))
2727
},

0 commit comments

Comments
 (0)