summaryrefslogtreecommitdiff
path: root/tool/sync_default_gems.rb
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2021-08-25 15:02:29 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2021-08-25 15:02:29 +0900
commit384c0f57aadb8d715dfc56c32ad8d769b9cda89e (patch)
tree602d7dce81a08024754ba07b5e58e3686944bdc0 /tool/sync_default_gems.rb
parentb44741f5dcb2903496832bffce09100e28356864 (diff)
Added bundle install before bundle exec on rdoc sync
Diffstat (limited to 'tool/sync_default_gems.rb')
-rw-r--r--tool/sync_default_gems.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/tool/sync_default_gems.rb b/tool/sync_default_gems.rb
index 8f8e93815c..04b9fe7877 100644
--- a/tool/sync_default_gems.rb
+++ b/tool/sync_default_gems.rb
@@ -118,6 +118,7 @@ def sync_default_gems(gem)
'lib/rdoc/rd/inline_parser.ry' => 'lib/rdoc/rd/inline_parser.rb'
}
Dir.chdir(upstream) do
+ `bundle install`
parser_files.each_value do |dst|
`bundle exec rake #{dst}`
end