mirror of
https://gitea.com/gitea/tea.git
synced 2026-04-06 00:13:30 +02:00
replace log.Fatal/os.Exit with error returns (#941)
* Use stdlib encoders * Reduce some duplication * Remove global pagination state * Dedupe JSON detail types * Bump golangci-lint Reviewed-on: https://gitea.com/gitea/tea/pulls/941 Co-authored-by: techknowlogick <techknowlogick@gitea.com> Co-committed-by: techknowlogick <techknowlogick@gitea.com>
This commit is contained in:
committed by
techknowlogick
parent
21881525a8
commit
b05e03416b
5
main.go
5
main.go
@@ -6,10 +6,12 @@ package main // import "code.gitea.io/tea"
|
||||
|
||||
import (
|
||||
"context"
|
||||
"errors"
|
||||
"fmt"
|
||||
"os"
|
||||
|
||||
"code.gitea.io/tea/cmd"
|
||||
teacontext "code.gitea.io/tea/modules/context"
|
||||
"code.gitea.io/tea/modules/debug"
|
||||
)
|
||||
|
||||
@@ -18,6 +20,9 @@ func main() {
|
||||
app.Flags = append(app.Flags, debug.CliFlag())
|
||||
err := app.Run(context.Background(), preprocessArgs(os.Args))
|
||||
if err != nil {
|
||||
if errors.Is(err, teacontext.ErrCommandCanceled) {
|
||||
os.Exit(0)
|
||||
}
|
||||
// app.Run already exits for errors implementing ErrorCoder,
|
||||
// so we only handle generic errors with code 1 here.
|
||||
fmt.Fprintf(app.ErrWriter, "Error: %v\n", err)
|
||||
|
||||
Reference in New Issue
Block a user