From 1fafd442c9dabbb6df4c1ecc6159f5a66b5b6ea1 Mon Sep 17 00:00:00 2001 From: coloursofnoise <53288101+coloursofnoise@users.noreply.github.com> Date: Thu, 2 Sep 2021 14:02:56 -0700 Subject: [PATCH] fixup: hardcode bin url --- azure-pipelines-postbuild.ps1 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/azure-pipelines-postbuild.ps1 b/azure-pipelines-postbuild.ps1 index 25d21aa90..815385fe8 100644 --- a/azure-pipelines-postbuild.ps1 +++ b/azure-pipelines-postbuild.ps1 @@ -38,8 +38,7 @@ New-Item -ItemType "directory" -Path $LIB_STRIPPED/build Write-Output "Downloading Celeste package" $creds = [System.Convert]::ToBase64String([System.Text.Encoding]::ASCII.GetBytes("$env:BIN_USERNAME:$env:BIN_PASSWORD")) $headers = @{'Authorization'= "Basic $creds"} -$uri = "$env:BIN_URL/Celeste_Linux.zip" -Invoke-WebRequest -URI $uri -OutFile "$env:AGENT_TEMPDIRECTORY/Celeste.zip" -Headers $headers +Invoke-WebRequest -URI 'coloursofnoise.0x0a.de/AzureBin/Celeste_Linux.zip' -OutFile "$env:AGENT_TEMPDIRECTORY/Celeste.zip" -Headers $headers Expand-Archive -Path "$env:AGENT_TEMPDIRECTORY/Celeste.zip" -DestinationPath $LIB_STRIPPED Write-Output "Applying Everest patch"