diff options
author | Unknown <joe2010xtmf@163.com> | 2014-03-30 16:01:50 -0400 |
---|---|---|
committer | Unknown <joe2010xtmf@163.com> | 2014-03-30 16:01:50 -0400 |
commit | 2a0066420a9395e5fa5afcd9be4d094a48eee3fa (patch) | |
tree | 7529650f4c78f9113ac4d9f7f307a4d92255e6cf /routers/install.go | |
parent | d0e6a4c25acc3414f6d0f93cc50e6dcb41111c19 (diff) | |
download | gitea-2a0066420a9395e5fa5afcd9be4d094a48eee3fa.tar.gz gitea-2a0066420a9395e5fa5afcd9be4d094a48eee3fa.zip |
Fix bug work with sqlite3
Diffstat (limited to 'routers/install.go')
-rw-r--r-- | routers/install.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/routers/install.go b/routers/install.go index 2c993c559e..e30c3cfd23 100644 --- a/routers/install.go +++ b/routers/install.go @@ -185,6 +185,7 @@ func Install(ctx *middleware.Context, form auth.InstallForm) { ctx.RenderWithErr("Admin account setting is invalid: "+err.Error(), "install", &form) return } + log.Info("Admin account already exist") } log.Info("First-time run install finished!") |