Skip to content

Commit

Permalink
don't return error if drone.sec not found
Browse files Browse the repository at this point in the history
  • Loading branch information
bradrydzewski committed Oct 29, 2015
1 parent 525fd50 commit bc5ec51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion remote/gitlab/gitlab.go
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ func (g *Gitlab) Script(user *model.User, repo *model.Repo, build *model.Build)
}
out2, err := client.RepoRawFile(id, build.Commit, ".drone.sec")
if err != nil {
return out1, nil, err
return out1, nil, nil
}
return out1, out2, err
}
Expand Down

0 comments on commit bc5ec51

Please sign in to comment.