From bd0abb7409e408962c4258c830599dfd4a782ae7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6nke=20Ludwig?= Date: Mon, 12 Mar 2018 00:11:15 +0100 Subject: [PATCH] Download DUB from GitHub instead of code.dlang.org. --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index a5f5cb5..cc8e592 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -95,7 +95,7 @@ install: } } - ps: SetUpDCompiler - - powershell -Command Invoke-WebRequest https://code.dlang.org/files/dub-1.7.1-windows-x86.zip -OutFile dub.zip + - powershell -Command [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest "https://github.com/dlang/dub/releases/download/v1.7.2/dub-1.7.2-windows-x86.zip" -OutFile dub.zip - 7z x dub.zip -odub > nul - set PATH=%CD%\%binpath%;%CD%\dub;%PATH% - dub --version