Skip to content

Commit

Permalink
Fix downloading the engine on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
MustaphaTR authored and pchote committed Mar 1, 2018
1 parent 6b5c5bc commit 88d1ce3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions make.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

1 comment on commit 88d1ce3

@MustaphaTR
Copy link
Member Author

@MustaphaTR MustaphaTR commented on 88d1ce3 Mar 3, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Engine should be downloaded properly now, downloading the dependencies from GitHub would fail, because the engine version here doesn't include OpenRA/OpenRA#14855

We are working on a hotfix release for this and some other problems.

Please sign in to comment.