summaryrefslogtreecommitdiff
path: root/tool
diff options
context:
space:
mode:
Diffstat (limited to 'tool')
-rw-r--r--tool/sync_default_gems.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/tool/sync_default_gems.rb b/tool/sync_default_gems.rb
index 9d3089250a..9b882bb264 100644
--- a/tool/sync_default_gems.rb
+++ b/tool/sync_default_gems.rb
@@ -237,6 +237,17 @@ def sync_default_gems_with_commits(gem, range)
`git fetch #{gem}`
end
end
+
+ IO.popen(%W"git log --format=%H #{range}") do |commits|
+ commits.read.split.reverse.each do |commit|
+ puts "Pick #{commit} from #{$repositories[gem.to_sym]}."
+ `git cherry-pick #{commit}`
+ unless $?.success?
+ puts "Failed to pick #{commit}."
+ break
+ end
+ end
+ end
end
def sync_lib(repo)