dev-cmd/contributions: Correctly order the trailers method args

- Was this a bad merge conflict resolution, or me not paying enough
  attention another time?
This commit is contained in:
Issy Long 2023-02-22 17:24:10 +00:00
parent dd32c7a92c
commit 0d345c4257
No known key found for this signature in database
GPG Key ID: 8247C390DADC67D4

View File

@ -141,8 +141,8 @@ module Homebrew
data[repo] = {
commits: GitHub.repo_commit_count_for_user(repo_full_name, person),
coauthorships: git_log_trailers_cmd(T.must(repo_path), "Co-authored-by", person, args),
signoffs: git_log_trailers_cmd(T.must(repo_path), "Signed-off-by", person, args),
coauthorships: git_log_trailers_cmd(T.must(repo_path), person, "Co-authored-by", args),
signoffs: git_log_trailers_cmd(T.must(repo_path), person, "Signed-off-by", args),
}
end