1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Subjects may contain a comma [ci skip]

This commit is contained in:
Nobuyoshi Nakada 2019-08-20 19:20:22 +09:00
parent 73af1c4d00
commit 7a07c54bef
No known key found for this signature in database
GPG key ID: 4BC7D6DF58D8DF60

View file

@ -243,7 +243,7 @@ def sync_default_gems_with_commits(gem, range)
commits = []
IO.popen(%W"git log --format=%H,%s #{range}") do |f|
commits = f.read.split("\n").reverse.map{|commit| commit.split(',')}
commits = f.read.split("\n").reverse.map{|commit| commit.split(',', 2)}
end
# Ignore Merge commit and insufficiency commit for ruby core repository.