diff options
author | Unknown <joe2010xtmf@163.com> | 2014-05-30 19:19:30 -0400 |
---|---|---|
committer | Unknown <joe2010xtmf@163.com> | 2014-05-30 19:19:30 -0400 |
commit | ddb7f55035216193a18c713b3536fba10543b04d (patch) | |
tree | 61a588b9fe729c97f2e60f123777200708a88072 /routers/install.go | |
parent | fbf274b751c910f1c0123feee705cd6f0a2f7ca4 (diff) | |
download | gitea-ddb7f55035216193a18c713b3536fba10543b04d.tar.gz gitea-ddb7f55035216193a18c713b3536fba10543b04d.zip |
Prepare for v0.4.0 release
Diffstat (limited to 'routers/install.go')
-rw-r--r-- | routers/install.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/routers/install.go b/routers/install.go index e49595f72b..f44391a46c 100644 --- a/routers/install.go +++ b/routers/install.go @@ -60,11 +60,11 @@ func GlobalInit() { } models.HasEngine = true - if models.EnableSQLite3 { - log.Info("SQLite3 Enabled") - } cron.NewCronContext() } + if models.EnableSQLite3 { + log.Info("SQLite3 Enabled") + } checkRunMode() } |