Skip to content

Commit

Permalink
remove problematic special chars for bash (#276)
Browse files Browse the repository at this point in the history
Signed-off-by: Manabu McCloskey <[email protected]>
  • Loading branch information
nabuskey authored Jun 4, 2024
1 parent aa98ee6 commit c13a570
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/util/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
const (
chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
digits = "0123456789"
specialChars = `!"#$%&'()*+,-./:;<=>?@[\\]^_{|}~`
specialChars = `!#$%&'()*+,-./:;<=>?@[]^_{|}~`
passwordLength = 40
numSpecialChars = 3
numDigits = 3
Expand Down

0 comments on commit c13a570

Please sign in to comment.