Skip to content

Commit b1d205a

Browse files
unaksorah
authored andcommitted
* tool/downloader.rb (RubyGems.download): follow the change of the rubygems ssl_certs directory tree introduced by previous commit.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54502 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent 7861d22 commit b1d205a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tool/downloader.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ class RubyGems < self
5757
def self.download(name, dir = nil, since = true, options = {})
5858
require 'rubygems'
5959
require 'rubygems/package'
60-
options[:ssl_ca_cert] = Dir.glob(File.expand_path("../lib/rubygems/ssl_certs/*.pem", File.dirname(__FILE__)))
60+
options[:ssl_ca_cert] = Dir.glob(File.expand_path("../lib/rubygems/ssl_certs/**/*.pem", File.dirname(__FILE__)))
6161
file = under(dir, name)
6262
super("https://rubygems.org/downloads/#{name}", file, nil, since, options) or
6363
return false

0 commit comments

Comments
 (0)