summaryrefslogtreecommitdiff
path: root/tool/sync_default_gems.rb
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2023-07-28 14:49:03 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2023-07-28 14:49:03 +0900
commitb9c2f4a42417572a5edf5a21bf606456facd3731 (patch)
tree711d7365fb8d5deeec270ba9bbcfbed095e86aae /tool/sync_default_gems.rb
parentce6c6c7cfae7bb328ef796b57a8daa1e6fba9955 (diff)
Fixed gemfile path for upstream of bundler
Diffstat (limited to 'tool/sync_default_gems.rb')
-rwxr-xr-xtool/sync_default_gems.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/sync_default_gems.rb b/tool/sync_default_gems.rb
index c96e527aaf..cac3bec766 100755
--- a/tool/sync_default_gems.rb
+++ b/tool/sync_default_gems.rb
@@ -154,7 +154,7 @@ module SyncDefaultGems
cp_r("#{upstream}/bundler/spec", "spec/bundler")
%w[dev_gems test_gems rubocop_gems standard_gems].each do |gemfile|
- cp_r("#{upstream}/bundler/tool/bundler/#{gemfile}.rb", "tool/bundler")
+ cp_r("#{upstream}/tool/bundler/#{gemfile}.rb", "tool/bundler")
end
rm_rf Dir.glob("spec/bundler/support/artifice/{vcr_cassettes,used_cassettes.txt}")
rm_rf Dir.glob("lib/{bundler,rubygems}/**/{COPYING,LICENSE,README}{,.{md,txt,rdoc}}")