1
0
mirror of https://github.com/go-gitea/gitea synced 2025-01-08 16:25:59 +01:00

fixed bug finally ()

This commit is contained in:
Lunny Xiao 2016-11-12 22:52:19 +08:00 committed by GitHub
parent 3ef022b071
commit bd76e156bb

View File

@ -7,7 +7,6 @@
package main // import "code.gitea.io/gitea"
import (
"log"
"os"
"runtime"
@ -38,5 +37,5 @@ func main() {
cmd.CmdAdmin,
}
app.Flags = append(app.Flags, []cli.Flag{}...)
log.Fatal(app.Run(os.Args))
app.Run(os.Args)
}