Fix missing storage init (#15589)
This commit is contained in:
parent
d6a33cef23
commit
e7fc078891
1 changed files with 5 additions and 0 deletions
|
@ -21,6 +21,7 @@ import (
|
|||
pwd "code.gitea.io/gitea/modules/password"
|
||||
repo_module "code.gitea.io/gitea/modules/repository"
|
||||
"code.gitea.io/gitea/modules/setting"
|
||||
"code.gitea.io/gitea/modules/storage"
|
||||
|
||||
"github.com/urfave/cli"
|
||||
)
|
||||
|
@ -489,6 +490,10 @@ func runDeleteUser(c *cli.Context) error {
|
|||
return err
|
||||
}
|
||||
|
||||
if err := storage.Init(); err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
var err error
|
||||
var user *models.User
|
||||
if c.IsSet("email") {
|
||||
|
|
Reference in a new issue