From 3bd5fc6d6f5e1a04acf93929808f982417031e2e Mon Sep 17 00:00:00 2001 From: Unknown Date: Thu, 1 May 2014 21:21:46 -0400 Subject: Add command dump and move to cmd did --- fix.go | 44 -------------------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 fix.go (limited to 'fix.go') diff --git a/fix.go b/fix.go deleted file mode 100644 index afc1ea6e..00000000 --- a/fix.go +++ /dev/null @@ -1,44 +0,0 @@ -// 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. - -package main - -import ( - "fmt" - "os" - - "github.com/codegangsta/cli" - "github.com/gogits/gogs/models" - "github.com/gogits/gogs/modules/base" -) - -var CmdFix = cli.Command{ - Name: "fix", - Usage: "This command for upgrade from old version", - Description: ` -gogs fix provide upgrade from old version`, - Action: runFix, - Flags: []cli.Flag{}, -} - -func runFix(k *cli.Context) { - execDir, _ := base.ExecDir() - newLogger(execDir) - - base.NewConfigContext() - models.LoadModelsConfig() - - if models.UseSQLite3 { - os.Chdir(execDir) - } - - models.SetEngine() - - err := models.Fix() - if err != nil { - fmt.Println(err) - } else { - fmt.Println("Fix successfully!") - } -} -- cgit v1.2.3