gitea/cmd/fix.go

44 lines
835 B
Go
Raw Normal View History

2014-04-30 04:23:43 +02: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-02 03:21:46 +02:00
package cmd
2014-04-30 04:23:43 +02:00
import (
"fmt"
"os"
"github.com/codegangsta/cli"
"github.com/gogits/gogs/models"
2014-05-26 02:11:25 +02:00
"github.com/gogits/gogs/modules/setting"
2014-04-30 04:23:43 +02:00
)
var CmdFix = cli.Command{
2014-05-05 06:55:17 +02: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-30 04:23:43 +02:00
}
func runFix(k *cli.Context) {
2014-05-26 02:11:25 +02:00
workDir, _ := setting.WorkDir()
newLogger(workDir)
2014-04-30 04:23:43 +02:00
2014-05-26 02:11:25 +02:00
setting.NewConfigContext()
2014-04-30 04:23:43 +02:00
models.LoadModelsConfig()
if models.UseSQLite3 {
2014-05-26 02:11:25 +02:00
os.Chdir(workDir)
2014-04-30 04:23:43 +02:00
}
models.SetEngine()
err := models.Fix()
if err != nil {
fmt.Println(err)
} else {
fmt.Println("Fix successfully!")
}
}