Handle SetModel error, fixes one errcheck report (#257)
This commit is contained in:
parent
076f940f1f
commit
9b4f6c1c32
1 changed files with 3 additions and 1 deletions
|
@ -74,7 +74,9 @@ func runCreateUser(c *cli.Context) error {
|
|||
|
||||
setting.NewContext()
|
||||
models.LoadConfigs()
|
||||
models.SetEngine()
|
||||
if err := models.SetEngine(); err != nil {
|
||||
return fmt.Errorf("models.SetEngine: %v", err)
|
||||
}
|
||||
|
||||
if err := models.CreateUser(&models.User{
|
||||
Name: c.String("name"),
|
||||
|
|
Reference in a new issue