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

Added bundle install before bundle exec on rdoc sync

This commit is contained in:
Hiroshi SHIBATA 2021-08-25 15:02:29 +09:00
parent b44741f5dc
commit 384c0f57aa
No known key found for this signature in database
GPG key ID: F9CF13417264FAC2

View file

@ -118,6 +118,7 @@ def sync_default_gems(gem)
'lib/rdoc/rd/inline_parser.ry' => 'lib/rdoc/rd/inline_parser.rb' 'lib/rdoc/rd/inline_parser.ry' => 'lib/rdoc/rd/inline_parser.rb'
} }
Dir.chdir(upstream) do Dir.chdir(upstream) do
`bundle install`
parser_files.each_value do |dst| parser_files.each_value do |dst|
`bundle exec rake #{dst}` `bundle exec rake #{dst}`
end end