summaryrefslogtreecommitdiff
path: root/tool
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-12-12 14:10:43 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-12-12 14:10:43 +0000
commit774f650bbe02a8e3053490a0e9e56901da732d6d (patch)
tree1c6376671b015c852b4212b010fcef8e807c22bd /tool
parent46e8a8ae379bdf0795eb60e8cf22a20457272d02 (diff)
Revert "switch from http to https for Unicode data file downloads"
This reverts commit 90de118a75921a08497b41de2950971073b3c924. The environment of mswinci couldn't handle https download. (It's certificates problem, We should upgrade its environment) git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61169 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'tool')
-rw-r--r--tool/downloader.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/downloader.rb b/tool/downloader.rb
index e084ec2df2..335fe97762 100644
--- a/tool/downloader.rb
+++ b/tool/downloader.rb
@@ -71,7 +71,7 @@ class Downloader
class Unicode < self
def self.download(name, *rest)
- super("https://www.unicode.org/Public/#{name}", name, *rest)
+ super("http://www.unicode.org/Public/#{name}", name, *rest)
end
end