Skip to content

Commit

Permalink
fixup: hardcode bin url
Browse files Browse the repository at this point in the history
  • Loading branch information
coloursofnoise committed Sep 2, 2021
1 parent f39a82d commit 1fafd44
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions azure-pipelines-postbuild.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 1fafd44

Please sign in to comment.