Browse Source

catch error on call setup on serv command (#932)

tags/v1.1.0
Lunny Xiao 7 years ago
parent
commit
be55460b63
1 changed files with 5 additions and 3 deletions
  1. 5
    3
      cmd/serve.go

+ 5
- 3
cmd/serve.go View File

}, },
} }


func setup(logPath string) {
func setup(logPath string) error {
setting.NewContext() setting.NewContext()
log.NewGitLogger(filepath.Join(setting.LogRootPath, logPath)) log.NewGitLogger(filepath.Join(setting.LogRootPath, logPath))


} }
} }


models.SetEngine()
return models.SetEngine()
} }


func parseCmd(cmd string) (string, string) { func parseCmd(cmd string) (string, string) {
setting.CustomConf = c.String("config") setting.CustomConf = c.String("config")
} }


setup("serv.log")
if err := setup("serv.log"); err != nil {
fail("System init failed", fmt.Sprintf("setup: %v", err))
}


if setting.SSH.Disabled { if setting.SSH.Disabled {
println("Gitea: SSH has been disabled") println("Gitea: SSH has been disabled")

Loading…
Cancel
Save