mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-04 01:10:49 +01:00
not show double error response in git hook (#18292)
if return a error message to cli, it will print it to stderr which is duplicate with our code (line 82 in same file). so user will see two line same error message in git output. I think it's not mecessary, so suggerst not return error message to cli. Thanks. Signed-off-by: a1012112796 <1012112796@qq.com>
This commit is contained in:
parent
7960c96c19
commit
72b3681648
1 changed files with 1 additions and 1 deletions
|
@ -92,7 +92,7 @@ func fail(userMessage, logMessage string, args ...interface{}) error {
|
|||
if len(logMessage) > 0 {
|
||||
_ = private.SSHLog(ctx, true, fmt.Sprintf(logMessage+": ", args...))
|
||||
}
|
||||
return cli.NewExitError(fmt.Sprintf("Gitea: %s", userMessage), 1)
|
||||
return cli.NewExitError("", 1)
|
||||
}
|
||||
|
||||
func runServ(c *cli.Context) error {
|
||||
|
|
Loading…
Reference in a new issue