aboutsummaryrefslogtreecommitdiffstats
path: root/routers/install.go
diff options
context:
space:
mode:
Diffstat (limited to 'routers/install.go')
-rw-r--r--routers/install.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/routers/install.go b/routers/install.go
index d4f270c9c3..9eda18f941 100644
--- a/routers/install.go
+++ b/routers/install.go
@@ -23,7 +23,6 @@ import (
"github.com/unknwon/com"
"gopkg.in/ini.v1"
- "xorm.io/xorm"
)
const (
@@ -161,8 +160,7 @@ func InstallPost(ctx *context.Context, form auth.InstallForm) {
}
// Set test engine.
- var x *xorm.Engine
- if err = models.NewTestEngine(x); err != nil {
+ if err = models.NewTestEngine(); err != nil {
if strings.Contains(err.Error(), `Unknown database type: sqlite3`) {
ctx.Data["Err_DbType"] = true
ctx.RenderWithErr(ctx.Tr("install.sqlite3_not_available", "https://docs.gitea.io/en-us/install-from-binary/"), tplInstall, &form)