Skip to content

Commit 3d96e3e

Browse files
authored
Set password length to 16 instead 10.
1 parent a503e8e commit 3d96e3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

func/main.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ generate_password() {
189189
matrix="A-Za-z0-9"
190190
fi
191191
if [ -z "$length" ]; then
192-
length=10
192+
length=16
193193
fi
194194
head /dev/urandom | tr -dc $matrix | head -c$length
195195
}

0 commit comments

Comments
 (0)