mirror of
https://github.com/go-gitea/gitea
synced 2024-11-12 04:51:38 +01:00
Return correct error response for agit force-push (#16989)
fix a samll nit for agit `force-push` error response Signed-off-by: a1012112796 <1012112796@qq.com>
This commit is contained in:
parent
efdbba4453
commit
358555f72c
1 changed files with 1 additions and 1 deletions
|
@ -213,7 +213,7 @@ func ProcRecive(ctx *context.PrivateContext, opts *private.HookOptions) []privat
|
||||||
return nil
|
return nil
|
||||||
} else if len(output) > 0 {
|
} else if len(output) > 0 {
|
||||||
results = append(results, private.HookProcReceiveRefResult{
|
results = append(results, private.HookProcReceiveRefResult{
|
||||||
OriginalRef: oldCommitID,
|
OriginalRef: opts.RefFullNames[i],
|
||||||
OldOID: opts.OldCommitIDs[i],
|
OldOID: opts.OldCommitIDs[i],
|
||||||
NewOID: opts.NewCommitIDs[i],
|
NewOID: opts.NewCommitIDs[i],
|
||||||
Err: "request `force-push` push option",
|
Err: "request `force-push` push option",
|
||||||
|
|
Loading…
Reference in a new issue