We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5efbad commit e5c944bCopy full SHA for e5c944b
build.ps1
@@ -535,7 +535,8 @@ function DownloadCefBinaryAndUnzip()
535
$LocalFile = Join-Path $WorkingDir $CefFileName
536
if (-not (Test-Path $LocalFile))
537
{
538
- $UriEncodedFileName = [System.Web.HttpUtility]::UrlEncode($CefFileName).Replace("%2b", "%2B")
+ # The spotify build server uses case sensitive urls now, need to use EscapeDataString instead of UrlEncode
539
+ $UriEncodedFileName = [System.Uri]::EscapeDataString($CefFileName)
540
$FullUri = $CefBuildServerUrl + $UriEncodedFileName
541
Write-Diagnostic "Downloading $FullUri this will take a while as the file is $CefFileSize MB."
542
0 commit comments