From 0d345c425735b31cf15146c2d85b52ff0a4c4be7 Mon Sep 17 00:00:00 2001 From: Issy Long Date: Wed, 22 Feb 2023 17:24:10 +0000 Subject: [PATCH] dev-cmd/contributions: Correctly order the trailers method args - Was this a bad merge conflict resolution, or me not paying enough attention another time? --- Library/Homebrew/dev-cmd/contributions.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Library/Homebrew/dev-cmd/contributions.rb b/Library/Homebrew/dev-cmd/contributions.rb index 91a1ff2639..df933b6fa2 100755 --- a/Library/Homebrew/dev-cmd/contributions.rb +++ b/Library/Homebrew/dev-cmd/contributions.rb @@ -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