diff --git a/scripts/Get-WindowsAppSdk.ps1 b/scripts/Get-WindowsAppSdk.ps1 index a9ca02a..655d043 100644 --- a/scripts/Get-WindowsAppSdk.ps1 +++ b/scripts/Get-WindowsAppSdk.ps1 @@ -10,7 +10,6 @@ function Download-File([string] $url, [string] $outputPath, [string] $etagFile) # We use `curl.exe` here because `Invoke-WebRequest` is notoriously slow. & curl.exe ` --progress-bar ` - -v ` --show-error ` --fail ` --location ` @@ -31,4 +30,4 @@ $windowsAppSdkFullVersion = "1.6.250228001" $windowsAppSdkPath = Join-Path $PSScriptRoot "files\windows-app-sdk-$($arch).exe" $windowsAppSdkUri = "https://aka.ms/windowsappsdk/$($windowsAppSdkMajorVersion)/$($windowsAppSdkFullVersion)/windowsappruntimeinstall-$($arch).exe" $windowsAppSdkEtagFile = $windowsAppSdkPath + ".etag" -Download-File $windowsAppSdkUri $windowsAppSdkPath $windowsAppSdkEtagFile \ No newline at end of file +Download-File $windowsAppSdkUri $windowsAppSdkPath $windowsAppSdkEtagFile