From 88d1ce326b3ee6da715e408ce757ab2c5dc580fe Mon Sep 17 00:00:00 2001 From: Mustafa Alperen Seki Date: Thu, 1 Mar 2018 20:21:27 +0300 Subject: [PATCH] Fix downloading the engine on Windows --- make.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/make.ps1 b/make.ps1 index 1fa06c4..58ed470 100644 --- a/make.ps1 +++ b/make.ps1 @@ -329,6 +329,7 @@ if ($command -eq "all" -or $command -eq "clean") $dlPath = Join-Path $dlPath (Split-Path -leaf $env:AUTOMATIC_ENGINE_TEMP_ARCHIVE_NAME) $client = new-object System.Net.WebClient + [Net.ServicePointManager]::SecurityProtocol = 'Tls12' $client.DownloadFile($url, $dlPath) Add-Type -assembly "system.io.compression.filesystem"