1
0
mirror of https://github.com/go-gitea/gitea.git synced 2024-09-05 23:34:19 -04:00
gitea/cmd/fix.go

44 lines
835 B
Go
Raw Normal View History

2014-04-29 22:23:43 -04:00
// Copyright 2014 The Gogs Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
2014-05-01 21:21:46 -04:00
package cmd
2014-04-29 22:23:43 -04:00
import (
"fmt"
"os"
"github.com/codegangsta/cli"
"github.com/gogits/gogs/models"
2014-05-25 20:11:25 -04:00
"github.com/gogits/gogs/modules/setting"
2014-04-29 22:23:43 -04:00
)
var CmdFix = cli.Command{
2014-05-05 00:55:17 -04:00
Name: "fix",
Usage: "This command for upgrade from old version",
Description: `Fix provide upgrade from old version`,
Action: runFix,
Flags: []cli.Flag{},
2014-04-29 22:23:43 -04:00
}
func runFix(k *cli.Context) {
2014-05-25 20:11:25 -04:00
workDir, _ := setting.WorkDir()
newLogger(workDir)
2014-04-29 22:23:43 -04:00
2014-05-25 20:11:25 -04:00
setting.NewConfigContext()
2014-04-29 22:23:43 -04:00
models.LoadModelsConfig()
if models.UseSQLite3 {
2014-05-25 20:11:25 -04:00
os.Chdir(workDir)
2014-04-29 22:23:43 -04:00
}
models.SetEngine()
err := models.Fix()
if err != nil {
fmt.Println(err)
} else {
fmt.Println("Fix successfully!")
}
}