Commit e6f71555 authored by Michael Goderbauer's avatar Michael Goderbauer Committed by GitHub

Revert "Work around to fix appveyor build (#11295)" (#11297)

This reverts commit bc4a3f17.
parent f0dec6e3
......@@ -40,13 +40,8 @@ if (Test-Path $dartSdkPath) {
}
New-Item $dartSdkPath -force -type directory | Out-Null
$dartSdkZip = "$cachePath\dart-sdk.zip"
# TODO(goderbauer): remove (slow and backwards-incompatible) appveyor work around
if (Test-Path Env:\APPVEYOR) {
curl $dartSdkUrl -OutFile $dartSdkZip
} else {
Import-Module BitsTransfer
Start-BitsTransfer -Source $dartSdkUrl -Destination $dartSdkZip
}
Import-Module BitsTransfer
Start-BitsTransfer -Source $dartSdkUrl -Destination $dartSdkZip
Write-Host "Unzipping Dart SDK..."
If (Get-Command 7z -errorAction SilentlyContinue) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment