Browse Source

models: break out of loop (#12386)

for-closed-social
Lars Lehtonen 3 years ago
committed by GitHub
parent
commit
e4d6f2e9e5
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      models/pull_sign.go

+ 2
- 1
models/pull_sign.go View File

@ -27,12 +27,13 @@ func (pr *PullRequest) SignMerge(u *User, tmpBasePath, baseCommit, headCommit st
var gitRepo *git.Repository
var err error
Loop:
for _, rule := range rules {
switch rule {
case never:
return false, "", &ErrWontSign{never}
case always:
break
break Loop
case pubkey:
keys, err := ListGPGKeys(u.ID, ListOptions{})
if err != nil {

Loading…
Cancel
Save