From b1200b807815198690041a79ce9d8e5fcab6b1af Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Sun, 10 Jan 2021 12:00:12 +0000 Subject: [PATCH] Switch make.ps1 to downloading from our GeoIP data mirror. --- make.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make.ps1 b/make.ps1 index c82adae69f..bcd16380f2 100644 --- a/make.ps1 +++ b/make.ps1 @@ -24,7 +24,7 @@ function All-Command { echo "Downloading IP2Location GeoIP database." $target = Join-Path $pwd.ToString() "IP2LOCATION-LITE-DB1.IPV6.BIN.ZIP" - (New-Object System.Net.WebClient).DownloadFile("https://download.ip2location.com/lite/IP2LOCATION-LITE-DB1.IPV6.BIN.ZIP", $target) + (New-Object System.Net.WebClient).DownloadFile("https://github.com/OpenRA/GeoIP-Database/releases/download/monthly/IP2LOCATION-LITE-DB1.IPV6.BIN.ZIP", $target) } }