Skip to content

Commit 995eb70

Browse files
committed
fixed bug go-gitea#151 finally
1 parent 3ef022b commit 995eb70

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

main.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
package main // import "code.gitea.io/gitea"
88

99
import (
10-
"log"
1110
"os"
1211
"runtime"
1312

@@ -38,5 +37,5 @@ func main() {
3837
cmd.CmdAdmin,
3938
}
4039
app.Flags = append(app.Flags, []cli.Flag{}...)
41-
log.Fatal(app.Run(os.Args))
40+
app.Run(os.Args)
4241
}

0 commit comments

Comments
 (0)