From ca03468333203e27125759bb59aaca4b299019da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Jos=C3=A9=20Pereira?= Date: Fri, 11 Dec 2020 21:07:08 -0300 Subject: [PATCH] appveyor: Fix download links for gstreamer (#9248) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Patrick José Pereira --- .appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 6dd8ba7..5b4a273 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -29,7 +29,7 @@ install: Write-Host "Installing GStreamer..." -ForegroundColor Cyan $msiPath = "$($env:USERPROFILE)\gstreamer-1.0-msvc-x86_64-1.18.1.msi" Write-Host "Downloading..." - (New-Object Net.WebClient).DownloadFile('https://s3.amazonaws.com/qgroundcontrol/dependencies/gstreamer-1.0-msvc-x86_64-1.18.1.msi', $msiPath) + (New-Object Net.WebClient).DownloadFile('https://s3-us-west-2.amazonaws.com/qgroundcontrol/dependencies/gstreamer-1.0-msvc-x86_64-1.18.1.msi', $msiPath) Write-Host "Installing..." cmd /c start /wait msiexec /package $msiPath /passive ADDLOCAL=ALL Write-Host "Installed" -ForegroundColor Green @@ -37,7 +37,7 @@ install: Write-Host "Installing GStreamer dev..." -ForegroundColor Cyan $msiPath = "$($env:USERPROFILE)\gstreamer-1.0-devel-msvc-x86_64-1.18.1.msi" Write-Host "Downloading..." - (New-Object Net.WebClient).DownloadFile('https://s3.amazonaws.com/qgroundcontrol/dependencies/gstreamer-1.0-devel-msvc-x86_64-1.18.1.msi', $msiPath) + (New-Object Net.WebClient).DownloadFile('https://s3-us-west-2.amazonaws.com/qgroundcontrol/dependencies/gstreamer-1.0-devel-msvc-x86_64-1.18.1.msi', $msiPath) Write-Host "Installing..." cmd /c start /wait msiexec /package $msiPath /passive ADDLOCAL=ALL Write-Host "Installed" -ForegroundColor Green