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

Fix sync_default_gems.rb to use absolute path

This commit is contained in:
Peter Zhu 2022-07-25 15:49:11 -04:00
parent 43c11f6c49
commit 8fa66467de
Notes: git 2022-07-26 05:29:44 +09:00

View file

@ -88,7 +88,7 @@ def sync_default_gems(gem)
repo = REPOSITORIES[gem.to_sym]
puts "Sync #{repo}"
upstream = File.join("..", "..", repo)
upstream = File.join(__dir__, "../..", repo)
case gem
when "rubygems"