From db523e2a85022e7c8864650d6478b48422401e87 Mon Sep 17 00:00:00 2001 From: Thibaut Courouble Date: Sun, 21 Oct 2018 17:40:26 -0400 Subject: [PATCH] Update dl.devdocs.io URL to HTTPS --- 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 f8154abe..a3847ec6 100644 --- a/lib/tasks/docs.thor +++ b/lib/tasks/docs.thor @@ -237,7 +237,7 @@ class DocsCLI < Thor def download_doc(doc) target_path = File.join(Docs.store_path, doc.path) - open "http://dl.devdocs.io/#{doc.path}.tar.gz" do |file| + open "https://dl.devdocs.io/#{doc.path}.tar.gz" do |file| FileUtils.mkpath(target_path) file.close tar = UnixUtils.gunzip(file.path)