fix password variable shadowing (#5405)

This commit is contained in:
Lanre Adelowo 2018-11-26 16:00:38 +01:00 committed by Lauris BH
parent 5e022a98e6
commit ce9a5173fe
1 changed files with 2 additions and 1 deletions

View File

@ -301,7 +301,8 @@ func runCreateUser(c *cli.Context) error {
if c.IsSet("password") {
password = c.String("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 {
return err
}