mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
Merge pull request #17889 from Homebrew/revert-17887-contributions-show-only-csv-in-csv-mode
This commit is contained in:
commit
c16f79aa10
@ -86,8 +86,6 @@ module Homebrew
|
||||
contributions <<
|
||||
"#{Utils.pluralize("time", grand_totals[username].values.sum, include_count: true)} (total)"
|
||||
|
||||
next if args.csv?
|
||||
|
||||
puts [
|
||||
"#{username} contributed",
|
||||
*contributions.to_sentence,
|
||||
@ -95,7 +93,10 @@ module Homebrew
|
||||
].join(" ")
|
||||
end
|
||||
|
||||
puts generate_csv(grand_totals) if args.csv?
|
||||
return unless args.csv?
|
||||
|
||||
puts
|
||||
puts generate_csv(grand_totals)
|
||||
end
|
||||
|
||||
private
|
||||
|
Loading…
x
Reference in New Issue
Block a user