1
Fork 0

gitea dump: include version & Check InstallLock (#12760)

* gitea dump: include version

* Check InstallLock (close #12759)

* fix test

* fix lint
This commit is contained in:
6543 2020-09-08 00:27:17 +02:00 committed by GitHub
parent 226aef7e0f
commit cfd8e8a489
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 21 additions and 0 deletions

View file

@ -186,6 +186,10 @@ func runDump(ctx *cli.Context) error {
if _, err := setting.Cfg.Section("log.console").NewKey("STDERR", "true"); err != nil {
fatal("Setting console logger to stderr failed: %v", err)
}
if !setting.InstallLock {
log.Error("Is '%s' really the right config path?\n", setting.CustomConf)
return fmt.Errorf("gitea is not initialized")
}
setting.NewServices() // cannot access session settings otherwise
err := models.SetEngine()