From eef70d83d08c5e6d63703d7a74172e479ba12ba5 Mon Sep 17 00:00:00 2001 From: Thibaut Courouble Date: Sun, 4 Nov 2018 08:55:55 -0500 Subject: [PATCH] Oops, dl.devdocs.io is not HTTPS-enabled yet --- lib/tasks/docs.thor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tasks/docs.thor b/lib/tasks/docs.thor index e0a15239..7839821e 100644 --- a/lib/tasks/docs.thor +++ b/lib/tasks/docs.thor @@ -274,7 +274,7 @@ class DocsCLI < Thor def download_doc(doc) target_path = File.join(Docs.store_path, doc.path) - open "https://dl.devdocs.io/#{doc.path}.tar.gz" do |file| + open "http://dl.devdocs.io/#{doc.path}.tar.gz" do |file| FileUtils.mkpath(target_path) file.close tar = UnixUtils.gunzip(file.path)