mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 20:21:47 +01:00 
			
		
		
		
	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") { | ||||
| 		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 | ||||
| 		} | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user