fix password variable shadowing (#5405)
This commit is contained in:
parent
5e022a98e6
commit
ce9a5173fe
|
@ -301,7 +301,8 @@ func runCreateUser(c *cli.Context) error {
|
||||||
if c.IsSet("password") {
|
if c.IsSet("password") {
|
||||||
password = c.String("password")
|
password = c.String("password")
|
||||||
} else if c.IsSet("random-password") {
|
} else if c.IsSet("random-password") {
|
||||||
password, err := generate.GetRandomString(c.Int("random-password-length"))
|
var err error
|
||||||
|
password, err = generate.GetRandomString(c.Int("random-password-length"))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue