diff options
author | Lunny Xiao | 2016-11-12 22:52:19 +0800 |
---|---|---|
committer | GitHub | 2016-11-12 22:52:19 +0800 |
commit | bd76e156bb08424841ff992aaffcc5aef913b703 (patch) | |
tree | eed8e77155f0669c945521483ae6434a3d34e7e8 /main.go | |
parent | 3ef022b0713aa1356b21a879c4e7140670078b57 (diff) |
fixed bug #151 finally (#164)
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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) } |