Commit ae72b92e09d6687d22f9a065f1f2af281ff11a3a
1 parent
ec952935
Exists in
master
and in
27 other branches
release.rake: exclude merge commits from AUTHORS
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
lib/tasks/release.rake
... | ... | @@ -83,7 +83,7 @@ EOF |
83 | 83 | begin |
84 | 84 | File.open("AUTHORS.md", 'w') do |output| |
85 | 85 | output.puts AUTHORS_HEADER |
86 | - output.puts `git log --pretty=format:'%aN <%aE>' | sort | uniq` | |
86 | + output.puts `git log --no-merges --pretty=format:'%aN <%aE>' | sort | uniq` | |
87 | 87 | output.puts AUTHORS_FOOTER |
88 | 88 | end |
89 | 89 | commit_changes(['AUTHORS.md'], 'Updating authors file') if !pendencies_on_authors[:ok] | ... | ... |